/* Rax Sales — landing-page design system, extracted verbatim from the template's inline <style>.
   Kept intact as the template design layer; brand overrides live in rax-theme.css (loaded after). */

                /* ================================================================
   PERFORMANCE LP — SCOPED STYLES
   All classes prefixed .plp- to avoid Webflow global collisions
   ================================================================ */

                .plp-body {
                    --plp-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
                    --plp-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
                    --plp-yellow: #fff980;
                    --plp-yellow-hover: #f8f168;
                    --plp-blue-wash: linear-gradient(#667fff00, #667fff4d);
                    --plp-green-wash: linear-gradient(#5fb88100, #5fb88133);
                    --plp-text: #1d1d1f;
                    --plp-text-secondary: #6e6e73;
                    --plp-bg: #fafafc;
                    --plp-white: #fff;
                    --plp-dark: #1d1d1f;
                    --plp-dark-surface: #1d1d1f;
                    --plp-border: rgba(0, 0, 0, 0.08);
                    --plp-green: #16a34a;
                    --plp-green-bg: #eafbef;
                    --plp-red: #ef4444;
                    --plp-red-bg: #fef2f2;
                    font-family: var(--plp-font-sans);
                    color: var(--plp-text);
                    line-height: 1.5;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                }

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

                /* ===== LAYOUT ===== */

                .plp-container {
                    max-width: 1328px;
                    margin: 0 auto;
                    padding: 0 56px;
                }

                .plp-container--narrow {
                    max-width: 860px;
                    margin: 0 auto;
                    padding: 0 56px;
                }

                .plp-section {
                    padding: 120px 0;
                    position: relative;
                    overflow: hidden;
                }

                .plp-section--white {
                    background: var(--plp-white);
                }

                .plp-section--light {
                    background: var(--plp-white);
                }

                .plp-section--blue-wash {
                    background: var(--plp-white);
                    background-image: var(--plp-blue-wash);
                }

                .plp-section--green-wash {
                    background: var(--plp-white);
                    background-image: var(--plp-green-wash);
                }

                .plp-section--dark {
                    background: var(--plp-dark);
                    color: #fff;
                }

                /* ===== TYPOGRAPHY ===== */

                .plp-eyebrow {
                    font-size: 12px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    color: var(--plp-text-secondary);
                    margin-bottom: 16px;
                }

                .plp-section--dark .plp-eyebrow {
                    color: var(--plp-yellow);
                }

                .plp-h2 {
                    font-family: var(--plp-font-sans);
                    font-size: 44px;
                    font-weight: 700;
                    line-height: 1.15;
                    letter-spacing: -0.02em;
                    margin-bottom: 20px;
                }

                .plp-h3 {
                    font-family: var(--plp-font-sans);
                    font-size: 32px;
                    font-weight: 600;
                    line-height: 1.2;
                    letter-spacing: -0.01em;
                    margin-bottom: 12px;
                }

                .plp-h4 {
                    font-size: 17px;
                    font-weight: 700;
                    line-height: 1.4;
                    margin-bottom: 6px;
                }

                .plp-p {
                    font-size: 17px;
                    line-height: 1.65;
                    color: var(--plp-text-secondary);
                }

                .plp-p--lg {
                    font-size: 19px;
                    line-height: 1.6;
                }

                .plp-section--dark .plp-p {
                    color: rgba(255, 255, 255, 0.6);
                }

                .plp-section--dark .plp-h2,
                .plp-section--dark .plp-h3,
                .plp-section--dark .plp-h4 {
                    color: #fff;
                }

                .plp-text-center {
                    text-align: center;
                }

                .plp-yellow-text {
                    color: var(--plp-yellow);
                }

                /* ===== BUTTONS ===== */

                .plp-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    font-family: var(--plp-font-sans);
                    font-weight: 600;
                    font-size: 15px;
                    border: none;
                    cursor: pointer;
                    text-decoration: none;
                    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
                    border-radius: 50px;
                    padding: 16px 32px;
                    position: relative;
                }

                .plp-btn:active {
                    transform: scale(0.97);
                }

                .plp-btn--primary {
                    background: var(--plp-yellow);
                    color: var(--plp-text);
                }

                .plp-btn--primary:hover {
                    background: var(--plp-yellow-hover);
                    box-shadow: 0 4px 24px rgba(255, 249, 128, 0.3);
                }

                .plp-btn--ghost {
                    background: transparent;
                    color: var(--plp-text);
                    border: 1px solid rgba(0, 0, 0, 0.15);
                }

                .plp-btn--ghost:hover {
                    background: rgba(0, 0, 0, 0.03);
                    border-color: rgba(0, 0, 0, 0.25);
                }

                .plp-btn--dark-ghost {
                    background: rgba(255, 255, 255, 0.06);
                    color: #fff;
                    border: 1px solid rgba(255, 255, 255, 0.12);
                }

                .plp-btn--dark-ghost:hover {
                    background: rgba(255, 255, 255, 0.1);
                    border-color: rgba(255, 255, 255, 0.2);
                }

                .plp-btn .plp-arrow {
                    transition: transform 0.25s ease;
                    font-size: 16px;
                }

                .plp-btn:hover .plp-arrow {
                    transform: translateX(3px);
                }

                /* ===== SCROLL ANIMATIONS ===== */

                .plp-reveal {
                    opacity: 0;
                    transform: translateY(28px);
                    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
                }

                .plp-reveal.is-visible {
                    opacity: 1;
                    transform: translateY(0);
                }

                .plp-reveal-delay-1 {
                    transition-delay: 0.1s;
                }

                .plp-reveal-delay-2 {
                    transition-delay: 0.2s;
                }

                .plp-reveal-delay-3 {
                    transition-delay: 0.3s;
                }

                .plp-reveal-delay-4 {
                    transition-delay: 0.4s;
                }

                /* ===== EMPLOYER LOGOS ===== */

                .plp-logos {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 48px;
                    flex-wrap: wrap;
                    padding: 48px 0;
                }

                .plp-logos span {
                    font-size: 18px;
                    font-weight: 700;
                    color: #c8c8cc;
                    letter-spacing: -0.01em;
                    white-space: nowrap;
                }

                /* ===== BENTO SERVICES GRID ===== */

                .plp-bento {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    grid-template-rows: auto auto;
                    gap: 12px;
                }

                .plp-bento-card {
                    background: var(--plp-white);
                    border: 1px solid var(--plp-border);
                    border-radius: 24px;
                    padding: 40px 32px;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    position: relative;
                    overflow: hidden;
                }

                .plp-bento-card:hover {
                    border-color: rgba(0, 0, 0, 0.15);
                }

                .plp-bento-card--featured {
                    grid-column: span 2;
                    background: var(--plp-dark);
                    color: #fff;
                    border-color: transparent;
                }

                .plp-bento-card--featured:hover {
                    border-color: rgba(255, 255, 255, 0.1);
                }

                .plp-bento-card--featured .plp-p {
                    color: rgba(255, 255, 255, 0.6);
                }

                .plp-bento-card--featured .plp-bento-icon {
                    background: rgba(255, 249, 128, 0.15);
                    color: var(--plp-yellow);
                }

                .plp-bento-icon {
                    width: 44px;
                    height: 44px;
                    background: #f5f5f7;
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 20px;
                    margin-bottom: 20px;
                }

                .plp-bento-card .plp-h4 {
                    font-size: 18px;
                    margin-bottom: 8px;
                }

                .plp-bento-card .plp-p {
                    font-size: 15px;
                    line-height: 1.55;
                }

                .plp-bento-tag {
                    display: inline-flex;
                    align-items: center;
                    font-size: 11px;
                    font-weight: 600;
                    padding: 4px 10px;
                    border-radius: 100px;
                    background: rgba(255, 249, 128, 0.15);
                    color: var(--plp-yellow);
                    margin-top: 16px;
                    letter-spacing: 0.02em;
                }

                /* ===== QUOTE BLOCK ===== */

                .plp-quote-block {
                    max-width: 680px;
                    margin: 0 auto;
                    text-align: center;
                }

                .plp-stars {
                    display: inline-flex;
                    gap: 2px;
                    margin-bottom: 24px;
                }

                .plp-star {
                    width: 20px;
                    height: 20px;
                    color: var(--plp-yellow);
                }

                .plp-quote-text {
                    font-family: var(--plp-font-sans);
                    font-size: 24px;
                    font-weight: 500;
                    line-height: 1.5;
                    color: var(--plp-text);
                    margin-bottom: 20px;
                    font-style: italic;
                }

                .plp-quote-source {
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--plp-text-secondary);
                    letter-spacing: 0.02em;
                }

                /* ===== VALUE PROP (2-COL) ===== */

                .plp-vp-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 64px;
                    align-items: center;
                }

                .plp-vp-text .plp-p {
                    margin-bottom: 20px;
                }

                .plp-vp-visual {
                    border-radius: 24px;
                    overflow: hidden;
                    position: relative;
                }

                .plp-vp-badges {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 6px;
                    margin-top: 8px;
                }

                .plp-badge {
                    font-size: 11px;
                    font-weight: 700;
                    padding: 5px 12px;
                    border-radius: 100px;
                    background: #f0f0f5;
                    color: var(--plp-text-secondary);
                    letter-spacing: 0.03em;
                }

                /* ===== TEAM AVATAR GRID ===== */

                .plp-team-grid {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .plp-team-row {
                    display: flex;
                    justify-content: center;
                    gap: 12px;
                }

                .plp-team-avatar {
                    width: 72px;
                    height: 72px;
                    border-radius: 50%;
                    border: 3px solid #fff;
                    object-fit: cover;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                }

                /* ===== AUM COMPARISON ===== */

                .plp-fee-compare {
                    background: var(--plp-bg);
                    border-radius: 24px;
                    padding: 40px;
                    border: 1px solid var(--plp-border);
                }

                .plp-fee-row {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    padding: 16px 0;
                }

                .plp-fee-row+.plp-fee-row {
                    border-top: 1px solid rgba(0, 0, 0, 0.06);
                }

                .plp-fee-label {
                    font-size: 14px;
                    font-weight: 600;
                    width: 140px;
                    flex-shrink: 0;
                    color: var(--plp-text);
                }

                .plp-fee-bar-track {
                    flex: 1;
                    height: 40px;
                    background: #f0f0f5;
                    border-radius: 10px;
                    position: relative;
                    overflow: hidden;
                }

                .plp-fee-bar-fill {
                    height: 100%;
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    padding: 0 16px;
                    font-size: 14px;
                    font-weight: 700;
                    color: #fff;
                    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
                    white-space: nowrap;
                }

                .plp-fee-bar-fill--them {
                    background: var(--plp-red);
                    width: 85%;
                }

                .plp-fee-bar-fill--range {
                    background: var(--plp-green);
                    width: 15%;
                }

                .plp-fee-summary {
                    display: flex;
                    justify-content: space-between;
                    margin-top: 24px;
                    padding-top: 20px;
                    border-top: 1px solid rgba(0, 0, 0, 0.06);
                }

                .plp-fee-total {
                    text-align: center;
                }

                .plp-fee-total-label {
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.06em;
                    color: var(--plp-text-secondary);
                    margin-bottom: 4px;
                }

                .plp-fee-total-amount {
                    font-family: var(--plp-font-sans);
                    font-size: 32px;
                    font-weight: 700;
                }

                .plp-fee-total-amount--red {
                    color: var(--plp-red);
                }

                .plp-fee-total-amount--green {
                    color: var(--plp-green);
                }

                .plp-fee-note {
                    font-size: 12px;
                    color: var(--plp-text-secondary);
                    margin-top: 4px;
                }

                /* ===== RAI AI SECTION ===== */

                .plp-rai-mockup {
                    background: var(--plp-dark-surface);
                    border-radius: 24px;
                    border: 2px solid rgba(255, 255, 255, 0.1);
                    padding: 32px;
                    max-width: 540px;
                    margin: 0 auto;
                }

                .plp-rai-topbar {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    margin-bottom: 24px;
                    padding-bottom: 16px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                }

                .plp-rai-avatar {
                    width: 32px;
                    height: 32px;
                    background: var(--plp-yellow);
                    border-radius: 8px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: 800;
                    font-size: 14px;
                    color: var(--plp-dark);
                }

                .plp-rai-name {
                    font-weight: 600;
                    font-size: 14px;
                    color: #fff;
                }

                .plp-rai-badge {
                    font-size: 10px;
                    font-weight: 600;
                    padding: 2px 8px;
                    border-radius: 100px;
                    background: rgba(255, 249, 128, 0.12);
                    color: var(--plp-yellow);
                    letter-spacing: 0.04em;
                }

                .plp-rai-messages {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                }

                .plp-rai-msg {
                    max-width: 85%;
                    padding: 12px 16px;
                    border-radius: 16px;
                    font-size: 14px;
                    line-height: 1.5;
                    animation: plp-msg-in 0.4s ease both;
                }

                .plp-rai-msg--user {
                    align-self: flex-end;
                    background: rgba(255, 255, 255, 0.08);
                    color: rgba(255, 255, 255, 0.85);
                    border-bottom-right-radius: 4px;
                }

                .plp-rai-msg--rai {
                    align-self: flex-start;
                    background: transparent;
                    color: rgba(255, 255, 255, 0.7);
                    padding-left: 0;
                }

                .plp-rai-msg--rai strong {
                    color: #fff;
                }

                @keyframes plp-msg-in {
                    from {
                        opacity: 0;
                        transform: translateY(8px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                .plp-rai-input {
                    margin-top: 24px;
                    background: rgba(255, 255, 255, 0.04);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    border-radius: 16px;
                    padding: 14px 16px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                }

                .plp-rai-input span {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.3);
                }

                .plp-rai-input-send {
                    width: 28px;
                    height: 28px;
                    background: var(--plp-yellow);
                    border-radius: 100px;
                    border: none;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                }

                /* ===== TESTIMONIALS ===== */

                .plp-testimonials {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 16px;
                }

                .plp-testimonial {
                    background: var(--plp-white);
                    border-radius: 24px;
                    padding: 40px;
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    transition: all 0.3s ease;
                }

                .plp-testimonial-stars {
                    display: flex;
                    gap: 2px;
                    color: var(--plp-yellow);
                    font-size: 14px;
                }

                .plp-testimonial-quote {
                    font-family: var(--plp-font-sans);
                    font-size: 17px;
                    font-weight: 500;
                    line-height: 1.55;
                    color: var(--plp-text);
                    flex: 1;
                }

                .plp-testimonial-author {
                    font-size: 13px;
                    color: var(--plp-text-secondary);
                    line-height: 1.5;
                    border-top: 1px solid rgba(0, 0, 0, 0.06);
                    padding-top: 16px;
                }

                .plp-testimonial-name {
                    font-weight: 700;
                    color: var(--plp-text);
                    font-size: 14px;
                }

                /* ===== TRUST GRID ===== */

                .plp-trust-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 12px;
                }

                .plp-trust-card {
                    background: var(--plp-white);
                    border-radius: 24px;
                    padding: 32px;
                    transition: all 0.3s ease;
                }

                .plp-trust-icon {
                    width: 44px;
                    height: 44px;
                    background: #f5f5f7;
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 20px;
                    margin-bottom: 20px;
                }

                .plp-trust-card .plp-h4 {
                    margin-bottom: 8px;
                }

                .plp-trust-card .plp-p {
                    font-size: 14px;
                    line-height: 1.55;
                }

                /* ===== FAQ ===== */

                .plp-faq-list {
                    max-width: 640px;
                    margin: 0 auto;
                }

                .plp-faq-item {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                }

                .plp-faq-item:first-child {
                    border-top: 1px solid rgba(255, 255, 255, 0.08);
                }

                .plp-faq-q {
                    width: 100%;
                    background: none;
                    border: none;
                    padding: 24px 0;
                    font-family: var(--plp-font-sans);
                    font-size: 17px;
                    font-weight: 600;
                    color: #fff;
                    text-align: left;
                    cursor: pointer;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 20px;
                    transition: color 0.2s;
                }

                .plp-faq-q:hover {
                    color: var(--plp-yellow);
                }

                .plp-faq-toggle {
                    width: 28px;
                    height: 28px;
                    border-radius: 50%;
                    border: 1px solid rgba(255, 255, 255, 0.15);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    transition: all 0.3s ease;
                    color: rgba(255, 255, 255, 0.5);
                    font-size: 18px;
                    line-height: 1;
                }

                .plp-faq-q[aria-expanded='true'] .plp-faq-toggle {
                    transform: rotate(45deg);
                    border-color: var(--plp-yellow);
                    color: var(--plp-yellow);
                }

                .plp-faq-a {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                }

                .plp-faq-a.is-open {
                    max-height: 500px;
                    padding-bottom: 24px;
                }

                .plp-faq-a .plp-p {
                    color: rgba(255, 255, 255, 0.5);
                    font-size: 15px;
                    line-height: 1.7;
                }

                /* ===== STAT STRIP ===== */

                .plp-stat-strip {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 32px;
                    text-align: center;
                    padding: 48px 0;
                    border-top: 1px solid rgba(255, 255, 255, 0.06);
                    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                }

                .plp-stat-number {
                    font-family: var(--plp-font-sans);
                    font-size: 48px;
                    font-weight: 700;
                    color: var(--plp-yellow);
                    line-height: 1.1;
                    margin-bottom: 8px;
                }

                .plp-stat-label {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.5);
                    font-weight: 500;
                }

                /* ===== CTA SECTIONS ===== */

                .plp-cta-row {
                    text-align: center;
                    padding-top: 48px;
                }

                /* ===== STICKY CTA BAR ===== */

                .plp-sticky-cta {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    z-index: 999;
                    background: rgba(29, 29, 31, 0.97);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                    padding: 0 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    height: 64px;
                    transform: translateY(-100%);
                    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                }

                .plp-sticky-cta.is-visible {
                    transform: translateY(0);
                }

                .plp-sticky-cta-inner {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    max-width: 1200px;
                }

                .plp-sticky-cta-text {
                    font-size: 15px;
                    font-weight: 600;
                    color: #fff;
                    white-space: nowrap;
                }

                .plp-sticky-cta .plp-btn {
                    padding: 10px 24px;
                    font-size: 14px;
                    flex-shrink: 0;
                    width: auto !important;
                    max-width: none !important;
                }

                @media (max-width: 900px) {
                    .plp-sticky-cta {
                        padding: 0 16px;
                        height: 56px;
                    }
                    .plp-sticky-cta-text {
                        display: none;
                    }
                    .plp-sticky-cta-inner {
                        justify-content: center;
                    }
                    .plp-sticky-cta .plp-btn {
                        padding: 10px 28px;
                        font-size: 14px;
                    }
                }

                /* ===== DIVIDER ===== */

                .plp-divider {
                    height: 1px;
                    background: var(--plp-border);
                    margin: 0;
                    border: none;
                }

                /* ===== INTERACTIVE FEE CALCULATOR ===== */

                .plp-calc-card {
                    background: var(--plp-white);
                    border: 1px solid var(--plp-border);
                    border-radius: 24px;
                    padding: 32px;
                    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
                }

                .plp-calc-input-group {
                    margin-bottom: 24px;
                }

                .plp-calc-input-group label {
                    display: block;
                    font-size: 14px;
                    font-weight: 500;
                    color: var(--plp-text-secondary);
                    margin-bottom: 8px;
                }

                .plp-calc-input-wrapper {
                    position: relative;
                }

                .plp-calc-input-wrapper .plp-calc-prefix {
                    position: absolute;
                    left: 16px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 18px;
                    font-weight: 600;
                    color: var(--plp-text);
                    pointer-events: none;
                }

                .plp-calc-input {
                    width: 100%;
                    height: 56px;
                    padding: 0 16px 0 30px;
                    font-family: var(--plp-font-sans);
                    font-size: 18px;
                    font-weight: 600;
                    color: var(--plp-text);
                    background: var(--plp-bg);
                    border: 1px solid rgba(0, 0, 0, 0.12);
                    border-radius: 8px;
                    outline: none;
                    transition: border-color 0.2s;
                }

                .plp-calc-input:focus {
                    border-color: var(--plp-text);
                }

                .plp-calc-slider {
                    width: 100%;
                    margin-top: 12px;
                    -webkit-appearance: none;
                    appearance: none;
                    height: 6px;
                    border-radius: 3px;
                    background: rgba(0, 0, 0, 0.1);
                    outline: none;
                }

                .plp-calc-slider::-webkit-slider-thumb {
                    -webkit-appearance: none;
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    background: var(--plp-yellow);
                    border: 2px solid var(--plp-text);
                    cursor: pointer;
                }

                .plp-calc-slider::-moz-range-thumb {
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    background: var(--plp-yellow);
                    border: 2px solid var(--plp-text);
                    cursor: pointer;
                }

                .plp-calc-results {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 12px;
                    margin-bottom: 20px;
                }

                .plp-calc-result-card {
                    padding: 16px;
                    border-radius: 12px;
                    text-align: center;
                }

                .plp-calc-result-card--competitor {
                    background: var(--plp-red-bg);
                }

                .plp-calc-result-card--range {
                    background: var(--plp-green-bg);
                }

                .plp-calc-result-label {
                    font-size: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.04em;
                    margin-bottom: 4px;
                }

                .plp-calc-result-card--competitor .plp-calc-result-label {
                    color: var(--plp-red);
                }

                .plp-calc-result-card--range .plp-calc-result-label {
                    color: var(--plp-green);
                }

                .plp-calc-result-fee {
                    font-size: 24px;
                    font-weight: 800;
                    color: var(--plp-text);
                    letter-spacing: -0.02em;
                }

                .plp-calc-result-note {
                    font-size: 12px;
                    color: var(--plp-text-secondary);
                    margin-top: 2px;
                }

                .plp-calc-savings {
                    background: var(--plp-dark);
                    color: #fff;
                    border-radius: 12px;
                    padding: 20px;
                    text-align: center;
                }

                .plp-calc-savings-label {
                    font-size: 13px;
                    font-weight: 500;
                    color: rgba(255, 255, 255, 0.7);
                    margin-bottom: 4px;
                }

                .plp-calc-savings-amount {
                    font-size: 32px;
                    font-weight: 800;
                    color: var(--plp-yellow);
                    letter-spacing: -0.02em;
                }

                .plp-calc-savings-period {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.6);
                    margin-top: 4px;
                }

                /* ===== RESPONSIVE — TABLET (max 900px) ===== */

                @media (max-width: 900px) {
                    .plp-container,
                    .plp-container--narrow {
                        padding: 0 24px;
                    }
                    .plp-section {
                        padding: 80px 0;
                    }
                    .plp-h2 {
                        font-size: 32px;
                    }
                    .plp-h3 {
                        font-size: 24px;
                    }
                    .plp-p,
                    .plp-p--lg {
                        font-size: 16px;
                    }
                    .plp-bento {
                        grid-template-columns: 1fr 1fr !important;
                    }
                    .plp-bento-card--featured {
                        grid-column: span 1 !important;
                    }
                    .plp-vp-grid {
                        grid-template-columns: 1fr;
                        gap: 32px;
                    }
                    .plp-vp-grid--reverse> :first-child {
                        order: 1;
                    }
                    .plp-vp-grid--reverse> :last-child {
                        order: 0;
                    }
                    .plp-testimonials {
                        grid-template-columns: 1fr;
                        gap: 16px;
                    }
                    .plp-testimonial {
                        padding: 32px;
                    }
                    .plp-trust-grid {
                        grid-template-columns: 1fr 1fr;
                    }
                    .plp-stat-number {
                        font-size: 36px;
                    }
                    .plp-fee-label {
                        width: 100px;
                        font-size: 13px;
                    }
                    .plp-fee-total-amount {
                        font-size: 28px;
                    }
                    .plp-rai-mockup {
                        max-width: 100%;
                    }
                    .plp-calc-card {
                        padding: 24px 20px;
                    }
                    .plp-calc-result-fee {
                        font-size: 20px;
                    }
                    .plp-calc-savings-amount {
                        font-size: 28px;
                    }
                    .plp-logos {
                        gap: 28px;
                    }
                    .plp-logos span {
                        font-size: 16px;
                    }
                    .plp-team-avatar {
                        width: 64px;
                        height: 64px;
                    }
                    .plp-btn {
                        width: 100%;
                        max-width: 360px;
                    }
                    .plp-cta-row {
                        display: flex;
                        justify-content: center;
                    }
                }

                /* ===== RESPONSIVE — MOBILE (max 600px) ===== */

                @media (max-width: 600px) {
                    .plp-container,
                    .plp-container--narrow {
                        padding: 0 16px;
                    }
                    .plp-section {
                        padding: 60px 0;
                    }
                    .plp-h2 {
                        font-size: 26px;
                        letter-spacing: -0.01em;
                    }
                    .plp-h3 {
                        font-size: 21px;
                    }
                    .plp-h4 {
                        font-size: 16px;
                    }
                    .plp-p {
                        font-size: 15px;
                    }
                    .plp-eyebrow {
                        font-size: 11px;
                    }
                    .plp-bento {
                        grid-template-columns: 1fr !important;
                    }
                    .plp-bento-card--featured {
                        grid-column: span 1 !important;
                    }
                    .plp-bento-card {
                        padding: 28px 24px;
                        border-radius: 20px;
                    }
                    .plp-trust-grid {
                        grid-template-columns: 1fr;
                    }
                    .plp-trust-card {
                        padding: 24px;
                        border-radius: 20px;
                    }
                    .plp-stat-strip {
                        grid-template-columns: 1fr;
                        gap: 20px;
                        padding: 32px 0;
                    }
                    .plp-stat-number {
                        font-size: 32px;
                    }
                    .plp-stat-label {
                        font-size: 13px;
                    }
                    .plp-logos {
                        gap: 16px 24px;
                    }
                    .plp-logos span {
                        font-size: 13px;
                    }
                    .plp-fee-compare {
                        padding: 20px;
                        border-radius: 20px;
                    }
                    .plp-fee-row {
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 8px;
                    }
                    .plp-fee-label {
                        width: auto;
                    }
                    .plp-fee-bar-track {
                        width: 100%;
                    }
                    .plp-fee-bar-fill {
                        font-size: 12px;
                        padding: 0 12px;
                    }
                    .plp-fee-summary {
                        flex-direction: column;
                        gap: 16px;
                    }
                    .plp-fee-total {
                        text-align: left;
                    }
                    .plp-fee-total-amount {
                        font-size: 24px;
                    }
                    .plp-rai-mockup {
                        padding: 16px;
                        border-radius: 20px;
                    }
                    .plp-rai-msg {
                        font-size: 13px;
                        padding: 10px 14px;
                        max-width: 90%;
                    }
                    .plp-rai-input span {
                        font-size: 13px;
                    }
                    .plp-team-avatar {
                        width: 48px;
                        height: 48px;
                        border-width: 2px;
                    }
                    .plp-team-row {
                        gap: 8px;
                    }
                    .plp-quote-text {
                        font-size: 18px;
                    }
                    .plp-testimonial {
                        padding: 24px;
                        border-radius: 20px;
                    }
                    .plp-testimonial-quote {
                        font-size: 15px;
                    }
                    .plp-vp-visual {
                        min-height: 200px !important;
                        padding: 8px !important;
                        border-radius: 20px;
                    }
                    .plp-faq-q {
                        font-size: 15px;
                        padding: 20px 0;
                    }
                    .plp-faq-a .plp-p {
                        font-size: 14px;
                    }
                    .plp-btn {
                        font-size: 14px;
                        padding: 14px 24px;
                        height: auto;
                    }
                }
