/* =============================================================
   LMS RFP Landing Page — Stylesheet v1.3
   Design: Warm editorial / refined professional
   Palette: Forest green + terracotta + cream
   Fonts: Playfair Display (headings) + Lora (body)
   File: /lms-rfp/lms-rfp-style.css
   ============================================================= */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
    --rfp-green:        #1E3A2F;
    --rfp-green-mid:    #2B5240;
    --rfp-green-light:  #3A6B54;
    --rfp-terra:        #C8622B;
    --rfp-terra-light:  #E07B44;
    --rfp-gold:         #B8883A;
    --rfp-cream:        #FAF8F3;
    --rfp-cream-dark:   #F2EDE3;
    --rfp-cream-mid:    #EDE6D8;
    --rfp-dark:         #1A2620;
    --rfp-text:         #2C2C2A;
    --rfp-text-mid:     #4A4A46;
    --rfp-text-light:   #6B6B66;
    --rfp-border:       #DDD8CE;
    --rfp-white:        #FFFFFF;
    --rfp-shadow-sm:    0 2px 8px rgba(30,58,47,.08);
    --rfp-shadow-md:    0 6px 24px rgba(30,58,47,.12);
    --rfp-shadow-lg:    0 16px 48px rgba(30,58,47,.16);
    --rfp-radius:       10px;
    --rfp-radius-lg:    16px;
    --rfp-transition:   0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --rfp-font-display: 'Playfair Display', Georgia, serif;
    --rfp-font-body:    'Lora', Georgia, serif;
    --rfp-max-w:        1160px;
    --rfp-gutter:       clamp(24px, 5vw, 56px);
}

/* ─── Theme Parent Override (body.rfp-full-page set in PHP) ── */
/* Belt-and-suspenders: also target known Hello Elementor       */
/* wrapper classes in case the body class filter fires late     */
body.rfp-full-page .entry-content,
body.rfp-full-page #primary,
body.rfp-full-page .content-area,
body.rfp-full-page .site-main,
body.rfp-full-page #main,
body.rfp-full-page .hentry,
body.rfp-full-page article.page,
body.rfp-full-page .post-inner,
body.rfp-full-page .entry-wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
#lms-rfp-page,
#lms-rfp-page *,
#lms-rfp-page *::before,
#lms-rfp-page *::after {
    box-sizing: border-box !important;
}

#lms-rfp-page * {
    margin: 0;
    padding: 0;
}

#lms-rfp-page {
    font-family: var(--rfp-font-body) !important;
    font-size: 17px;
    line-height: 1.72;
    color: var(--rfp-text);
    background: var(--rfp-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.rfp-modal-overlay,
.rfp-modal-overlay * {
    box-sizing: border-box !important;
}

/* ─── Container ─────────────────────────────────────────────── */
#lms-rfp-page .rfp-container {
    max-width: var(--rfp-max-w) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--rfp-gutter) !important;
    padding-right: var(--rfp-gutter) !important;
    box-sizing: border-box !important;
    float: none !important;
}

/* Sections span full viewport width — horizontal padding = 0   */
#lms-rfp-page .rfp-hero,
#lms-rfp-page .rfp-stats,
#lms-rfp-page .rfp-section,
#lms-rfp-page .rfp-cta-banner,
#lms-rfp-page .rfp-final-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
    clear: both !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* ─── Scroll Animations ─────────────────────────────────────── */
#lms-rfp-page [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
#lms-rfp-page [data-animate="fade-left"] {
    transform: translateX(36px);
}
#lms-rfp-page [data-animate].is-visible {
    opacity: 1;
    transform: none;
}

/* ─── Typography Utilities ──────────────────────────────────── */
#lms-rfp-page .rfp-eyebrow {
    display: inline-block;
    font-family: var(--rfp-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rfp-terra);
    margin-bottom: 14px;
}
#lms-rfp-page .rfp-eyebrow--light {
    color: rgba(255,255,255,0.75);
}
#lms-rfp-page .rfp-h2 {
    font-family: var(--rfp-font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--rfp-green);
    margin-bottom: 20px;
}
#lms-rfp-page .rfp-h2--light { color: var(--rfp-white); }
#lms-rfp-page .rfp-h2 em { font-style: italic; color: var(--rfp-terra); }
#lms-rfp-page .rfp-h2__sub {
    font-size: 17px;
    color: var(--rfp-text-mid);
    margin-top: -8px;
    margin-bottom: 20px;
    max-width: 700px;
}
#lms-rfp-page .rfp-h3 {
    font-family: var(--rfp-font-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 600;
    color: var(--rfp-green);
    margin-bottom: 12px;
}
#lms-rfp-page .rfp-h3__sub {
    font-size: 16px;
    color: var(--rfp-text-mid);
    margin-top: 4px;
}
#lms-rfp-page .rfp-inline-link {
    color: var(--rfp-terra);
    text-decoration: underline;
    text-decoration-color: rgba(200,98,43,.35);
    text-underline-offset: 3px;
    transition: color var(--rfp-transition), text-decoration-color var(--rfp-transition);
}
#lms-rfp-page .rfp-inline-link:hover {
    color: var(--rfp-terra-light);
    text-decoration-color: var(--rfp-terra-light);
}

/* ─── Buttons ───────────────────────────────────────────────── */
#lms-rfp-page .rfp-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    font-family: var(--rfp-font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all var(--rfp-transition);
    white-space: normal;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    outline: none;
}
#lms-rfp-page .rfp-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--rfp-transition);
}
#lms-rfp-page .rfp-btn:hover::after { background: rgba(255,255,255,0.08); }
#lms-rfp-page .rfp-btn:active { transform: translateY(1px); }

#lms-rfp-page .rfp-btn--primary {
    background: var(--rfp-green) !important;
    color: var(--rfp-white) !important;
    border-color: var(--rfp-green) !important;
    box-shadow: 0 4px 16px rgba(30,58,47,.25) !important;
}
#lms-rfp-page .rfp-btn--primary:hover {
    background: var(--rfp-green-mid) !important;
    border-color: var(--rfp-green-mid) !important;
    box-shadow: 0 6px 22px rgba(30,58,47,.35) !important;
    transform: translateY(-2px);
}
#lms-rfp-page .rfp-btn--secondary {
    background: var(--rfp-terra) !important;
    color: var(--rfp-white) !important;
    border-color: var(--rfp-terra) !important;
    box-shadow: 0 4px 16px rgba(200,98,43,.28) !important;
}
#lms-rfp-page .rfp-btn--secondary:hover {
    background: var(--rfp-terra-light) !important;
    border-color: var(--rfp-terra-light) !important;
    transform: translateY(-2px);
}
#lms-rfp-page .rfp-btn--excel {
    background: #1D6F42 !important;
    color: var(--rfp-white) !important;
    border-color: #1D6F42 !important;
    box-shadow: 0 4px 16px rgba(29,111,66,.25) !important;
}
#lms-rfp-page .rfp-btn--excel:hover {
    background: #22854f !important;
    border-color: #22854f !important;
    transform: translateY(-2px);
}
#lms-rfp-page .rfp-btn--kit {
    background: linear-gradient(135deg, var(--rfp-green) 0%, var(--rfp-green-light) 100%) !important;
    color: var(--rfp-white) !important;
    border: none !important;
    box-shadow: 0 6px 24px rgba(30,58,47,.3) !important;
    padding: 16px 36px;
}
#lms-rfp-page .rfp-btn--kit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30,58,47,.38) !important;
}
#lms-rfp-page .rfp-btn--outline-light {
    background: transparent !important;
    color: var(--rfp-white) !important;
    border-color: rgba(255,255,255,0.55) !important;
}
#lms-rfp-page .rfp-btn--outline-light:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--rfp-white) !important;
}
#lms-rfp-page .rfp-btn--block {
    width: 100% !important;
    justify-content: center;
    margin-top: 18px;
}
#lms-rfp-page .rfp-btn--lg  { padding: 16px 32px; font-size: 16px; }
#lms-rfp-page .rfp-btn--xl  { padding: 18px 38px; font-size: 17px; }

/* ─── Section Shared ────────────────────────────────────────── */
#lms-rfp-page .rfp-section {
    padding: clamp(56px, 8vw, 96px) 0;
}
#lms-rfp-page .rfp-section--light  { background: var(--rfp-cream); }
#lms-rfp-page .rfp-section--cream  { background: var(--rfp-cream-dark); }
#lms-rfp-page .rfp-section--dark   { background: var(--rfp-green); }
#lms-rfp-page .rfp-section__header { margin-bottom: clamp(32px, 5vw, 56px); }
#lms-rfp-page .rfp-section__header--light .rfp-h2  { color: var(--rfp-white); }
#lms-rfp-page .rfp-section__header--light .rfp-h2__sub { color: rgba(255,255,255,.75); }

#lms-rfp-page .rfp-section__tag {
    display: inline-block;
    font-family: var(--rfp-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rfp-terra);
    border: 1.5px solid rgba(200,98,43,.35);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 18px;
    background: rgba(200,98,43,.06);
}
#lms-rfp-page .rfp-section__tag--light {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
}
#lms-rfp-page .rfp-divider {
    border: none !important;
    border-top: 1.5px solid var(--rfp-border) !important;
    margin: 48px 0;
    height: 0;
    display: block;
}
#lms-rfp-page .rfp-section-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rfp-border), transparent);
    margin: 56px 0;
    display: block;
}

/* ─── Prose ─────────────────────────────────────────────────── */
#lms-rfp-page .rfp-prose     { max-width: 740px; }
#lms-rfp-page .rfp-prose--wide { max-width: 820px; }
#lms-rfp-page .rfp-prose p,
#lms-rfp-page .rfp-prose--wide p {
    margin-bottom: 20px;
    color: var(--rfp-text-mid);
    font-size: 17px;
    line-height: 1.75;
}
#lms-rfp-page .rfp-prose strong { color: var(--rfp-text); font-weight: 600; }

/* ─── HERO ──────────────────────────────────────────────────── */
#lms-rfp-page .rfp-hero {
    background: var(--rfp-green);
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 9vw, 108px);
}
#lms-rfp-page .rfp-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
#lms-rfp-page .rfp-hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
#lms-rfp-page .shape--1 {
    width: 560px; height: 560px;
    background: var(--rfp-terra);
    top: -180px; right: -80px;
}
#lms-rfp-page .shape--2 {
    width: 340px; height: 340px;
    background: var(--rfp-gold);
    bottom: -100px; left: -80px;
}
#lms-rfp-page .shape--3 {
    width: 200px; height: 200px;
    background: var(--rfp-white);
    top: 40%; right: 28%;
}
#lms-rfp-page .rfp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    position: relative;
    z-index: 1;
}
#lms-rfp-page .rfp-hero__h1 {
    font-family: var(--rfp-font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--rfp-white);
    margin-bottom: 22px;
}
#lms-rfp-page .rfp-hero__h1 em {
    font-style: italic;
    color: #F0B882;
}
#lms-rfp-page .rfp-hero__subheadline {
    font-family: var(--rfp-font-body);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    color: rgba(255,255,255,.88);
    margin-bottom: 20px;
    font-weight: 500;
}
#lms-rfp-page .rfp-hero__body {
    font-size: 16px;
    color: rgba(255,255,255,.72);
    margin-bottom: 14px;
    max-width: 560px;
    line-height: 1.7;
}
#lms-rfp-page .rfp-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
    margin-bottom: 14px;
}
#lms-rfp-page .rfp-hero__disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
#lms-rfp-page .rfp-hero__scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
    z-index: 2;
}
#lms-rfp-page .rfp-hero__scroll-hint span {
    width: 4px; height: 8px;
    background: rgba(255,255,255,.5);
    border-radius: 2px;
    animation: rfpScrollHint 2s infinite ease-in-out;
}
@keyframes rfpScrollHint {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ─── Hero Doc Preview ───────────────────────────────────────── */
#lms-rfp-page .rfp-hero__visual { flex-shrink: 0; }
#lms-rfp-page .rfp-doc-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
}
#lms-rfp-page .rfp-doc-preview__card {
    background: rgba(255,255,255,.97);
    border-radius: var(--rfp-radius-lg);
    padding: 20px 22px;
    box-shadow: var(--rfp-shadow-lg);
    position: relative;
    transition: transform var(--rfp-transition);
}
#lms-rfp-page .rfp-doc-preview__card:hover { transform: translateY(-4px); }
#lms-rfp-page .rfp-doc-preview__card--word  { border-top: 3px solid #2B5797; }
#lms-rfp-page .rfp-doc-preview__card--excel { border-top: 3px solid #1D6F42; }
#lms-rfp-page .doc-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
#lms-rfp-page .doc-card__header > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#lms-rfp-page .doc-card__header strong {
    font-family: var(--rfp-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--rfp-text);
    line-height: 1.2;
}
#lms-rfp-page .doc-card__header span {
    font-size: 11px;
    color: var(--rfp-text-light);
}
#lms-rfp-page .doc-icon {
    width: 36px; height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rfp-font-display);
    font-size: 17px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
#lms-rfp-page .doc-icon--word  { background: #2B5797; }
#lms-rfp-page .doc-icon--excel { background: #1D6F42; }
#lms-rfp-page .doc-card__lines { display: flex; flex-direction: column; gap: 5px; }
#lms-rfp-page .doc-card__lines span {
    height: 6px;
    background: #E8E4DC;
    border-radius: 3px;
    display: block;
}
#lms-rfp-page .doc-card__lines span.short { width: 60%; }
#lms-rfp-page .doc-card__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
#lms-rfp-page .doc-card__grid span {
    height: 18px;
    background: #E8F5EE;
    border-radius: 2px;
    display: block;
}
#lms-rfp-page .doc-card__grid span:nth-child(1),
#lms-rfp-page .doc-card__grid span:nth-child(4),
#lms-rfp-page .doc-card__grid span:nth-child(7) {
    background: #C5E0CF;
}
#lms-rfp-page .doc-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--rfp-terra);
    color: white;
    font-family: var(--rfp-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
#lms-rfp-page .rfp-stats {
    background: var(--rfp-white);
    border-bottom: 1.5px solid var(--rfp-border);
    padding: clamp(32px, 4vw, 52px) 0;
    box-shadow: var(--rfp-shadow-sm);
    position: relative;
    z-index: 10;
}
#lms-rfp-page .rfp-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
#lms-rfp-page .rfp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 28px);
    border-right: 1.5px solid var(--rfp-border);
    gap: 8px;
}
#lms-rfp-page .rfp-stat:last-child { border-right: none; }
#lms-rfp-page .rfp-stat__icon {
    width: 44px; height: 44px;
    background: rgba(30,58,47,.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#lms-rfp-page .rfp-stat__icon svg {
    width: 22px; height: 22px;
    stroke: var(--rfp-green);
}
#lms-rfp-page .rfp-stat__number {
    font-family: var(--rfp-font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: var(--rfp-green);
    line-height: 1;
    display: block;
}
#lms-rfp-page .rfp-stat__label {
    font-family: var(--rfp-font-body);
    font-size: 13px;
    color: var(--rfp-text-light);
    line-height: 1.4;
}

/* ─── Compare Cards ─────────────────────────────────────────── */
#lms-rfp-page .rfp-compare-cards {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 12px;
    background: var(--rfp-white);
    border-radius: var(--rfp-radius-lg);
    box-shadow: var(--rfp-shadow-md);
    overflow: hidden;
    border: 1.5px solid var(--rfp-border);
}
#lms-rfp-page .rfp-compare-card {
    padding: clamp(28px, 4vw, 44px);
}
#lms-rfp-page .rfp-compare-card--word  { border-top: 4px solid #2B5797; }
#lms-rfp-page .rfp-compare-card--excel { border-top: 4px solid #1D6F42; }
#lms-rfp-page .rfp-compare-card__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rfp-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--rfp-terra);
    background: var(--rfp-cream-dark);
    border-left: 1.5px solid var(--rfp-border);
    border-right: 1.5px solid var(--rfp-border);
}
#lms-rfp-page .rfp-compare-card__icon { margin-bottom: 18px; }
#lms-rfp-page .rfp-compare-card__icon svg { width: 52px; height: 62px; }
#lms-rfp-page .rfp-compare-card__label {
    font-family: var(--rfp-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rfp-text-light);
    margin-bottom: 8px;
}
#lms-rfp-page .rfp-compare-card h4 {
    font-family: var(--rfp-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 14px;
}
#lms-rfp-page .rfp-compare-card p {
    font-size: 15px;
    color: var(--rfp-text-mid);
    margin-bottom: 18px;
    line-height: 1.75;
}

/* Feature list — pure CSS checkmark, no SVG data URIs          */
#lms-rfp-page .rfp-feature-list {
    list-style: none !important;
    margin-bottom: 8px;
}
#lms-rfp-page .rfp-feature-list li {
    font-family: var(--rfp-font-body);
    font-size: 14px;
    color: var(--rfp-text-mid);
    padding: 8px 0 8px 28px !important;
    border-bottom: 1px solid var(--rfp-cream-dark);
    position: relative !important;
    list-style: none !important;
    line-height: 1.5;
}
#lms-rfp-page .rfp-feature-list li:last-child { border-bottom: none; }
#lms-rfp-page .rfp-feature-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 4px !important;
    top: 50% !important;
    width: 11px !important;
    height: 7px !important;
    border-left: 2.5px solid var(--rfp-green) !important;
    border-bottom: 2.5px solid var(--rfp-green) !important;
    transform: translateY(-65%) rotate(-45deg) !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

#lms-rfp-page .rfp-compare-note {
    margin-top: 24px;
    text-align: center;
    font-style: italic;
    font-size: 16px;
    color: var(--rfp-text-mid);
    padding: 20px 28px;
    background: rgba(30,58,47,.05);
    border-radius: var(--rfp-radius);
    border-left: 3px solid var(--rfp-terra);
    display: block;
}

/* ─── Why Reasons ───────────────────────────────────────────── */
#lms-rfp-page .rfp-reasons {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--rfp-radius-lg);
    overflow: hidden;
    box-shadow: var(--rfp-shadow-md);
    margin-top: 36px;
    border: 1.5px solid var(--rfp-border);
}
#lms-rfp-page .rfp-reason {
    display: grid;
    grid-template-columns: 72px 1fr;
    background: var(--rfp-white);
    border-bottom: 1.5px solid var(--rfp-cream-dark);
    transition: background var(--rfp-transition);
}
#lms-rfp-page .rfp-reason:last-child { border-bottom: none; }
#lms-rfp-page .rfp-reason:hover { background: #FFFCF8; }
#lms-rfp-page .rfp-reason__num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rfp-font-display);
    font-size: 15px;
    font-weight: 700;
    color: rgba(30,58,47,.25);
    background: var(--rfp-cream);
    border-right: 1.5px solid var(--rfp-cream-dark);
    padding: 28px 0;
    flex-shrink: 0;
}
#lms-rfp-page .rfp-reason__content {
    padding: clamp(22px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
}
#lms-rfp-page .rfp-reason__content h3 {
    font-family: var(--rfp-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 8px;
    line-height: 1.35;
}
#lms-rfp-page .rfp-reason__content p {
    font-size: 15px;
    color: var(--rfp-text-mid);
    line-height: 1.75;
}

/* ─── CTA Banners ───────────────────────────────────────────── */
#lms-rfp-page .rfp-cta-banner {
    padding: clamp(48px, 6vw, 72px) 0;
}
#lms-rfp-page .rfp-cta-banner--mid {
    background: linear-gradient(135deg, var(--rfp-green) 0%, var(--rfp-green-mid) 100%);
}
#lms-rfp-page .rfp-cta-banner--warm {
    background: linear-gradient(135deg, #3D2010 0%, var(--rfp-terra) 50%, #C4783A 100%);
}
#lms-rfp-page .rfp-cta-banner__inner {
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 56px);
    flex-wrap: wrap;
}
#lms-rfp-page .rfp-cta-banner__text { flex: 1; min-width: 260px; }
#lms-rfp-page .rfp-cta-banner__text h2 {
    font-family: var(--rfp-font-display);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    color: var(--rfp-white);
    margin-bottom: 10px;
    line-height: 1.2;
}
#lms-rfp-page .rfp-cta-banner__text p {
    color: rgba(255,255,255,.8);
    font-size: 16px;
    max-width: 540px;
    line-height: 1.65;
}
#lms-rfp-page .rfp-cta-banner__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ─── What's Inside ─────────────────────────────────────────── */
#lms-rfp-page .rfp-inside-block { margin-bottom: 12px; }
#lms-rfp-page .rfp-inside-block__title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
#lms-rfp-page .rfp-inside-block__title h3 {
    font-family: var(--rfp-font-display);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--rfp-green);
    line-height: 1.2;
}
#lms-rfp-page .rfp-inside-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--rfp-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 6px;
    color: white;
    flex-shrink: 0;
    line-height: 1;
}
#lms-rfp-page .rfp-inside-badge--word  { background: #2B5797; }
#lms-rfp-page .rfp-inside-badge--excel { background: #1D6F42; }
#lms-rfp-page .rfp-inside-block__intro {
    font-size: 16px;
    color: var(--rfp-text-mid);
    margin-bottom: 36px;
    max-width: 820px;
    line-height: 1.75;
}
#lms-rfp-page .rfp-inside-parts { display: flex; flex-direction: column; gap: 24px; }
#lms-rfp-page .rfp-inside-part {
    background: var(--rfp-white);
    border-radius: var(--rfp-radius-lg);
    padding: clamp(24px, 3.5vw, 40px);
    border: 1.5px solid var(--rfp-border);
    box-shadow: var(--rfp-shadow-sm);
}
#lms-rfp-page .rfp-inside-part__header { margin-bottom: 16px; }
#lms-rfp-page .rfp-inside-part__header h4 {
    font-family: var(--rfp-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-top: 6px;
    line-height: 1.3;
}
#lms-rfp-page .rfp-part-label {
    display: inline-block;
    font-family: var(--rfp-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--rfp-terra);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
}
#lms-rfp-page .rfp-inside-part > p {
    font-size: 15px;
    color: var(--rfp-text-mid);
    margin-bottom: 22px;
    max-width: 760px;
    line-height: 1.75;
}

#lms-rfp-page .rfp-section-list { display: flex; flex-direction: column; gap: 0; }
#lms-rfp-page .rfp-section-list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
}
#lms-rfp-page .rfp-section-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--rfp-cream-dark);
    font-size: 14px;
    line-height: 1.65;
    align-items: start;
}
#lms-rfp-page .rfp-section-item:last-child { border-bottom: none; }
#lms-rfp-page .rfp-section-item__num {
    font-family: var(--rfp-font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--rfp-terra);
    padding-top: 2px;
    flex-shrink: 0;
}
#lms-rfp-page .rfp-section-item div { color: var(--rfp-text-mid); }
#lms-rfp-page .rfp-section-item strong { color: var(--rfp-text); font-weight: 600; }
#lms-rfp-page .rfp-inside-note {
    margin-top: 20px;
    font-size: 14px;
    font-style: italic;
    color: var(--rfp-text-light);
    padding: 14px 18px;
    background: var(--rfp-cream);
    border-radius: 6px;
    border-left: 3px solid var(--rfp-gold);
    display: block;
}

/* ─── Excel Sheets Grid ─────────────────────────────────────── */
#lms-rfp-page .rfp-sheets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}
#lms-rfp-page .rfp-sheet-card {
    background: var(--rfp-white);
    border: 1.5px solid var(--rfp-border);
    border-radius: var(--rfp-radius);
    padding: 26px;
    border-top: 3px solid var(--rfp-gold);
    transition: box-shadow var(--rfp-transition), transform var(--rfp-transition);
}
#lms-rfp-page .rfp-sheet-card:hover {
    box-shadow: var(--rfp-shadow-md);
    transform: translateY(-3px);
}
#lms-rfp-page .rfp-sheet-card__num {
    font-family: var(--rfp-font-display);
    font-size: 28px;
    font-weight: 700;
    color: rgba(184,136,58,.25);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}
#lms-rfp-page .rfp-sheet-card h4 {
    font-family: var(--rfp-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 10px;
    line-height: 1.3;
}
#lms-rfp-page .rfp-sheet-card p {
    font-size: 14px;
    color: var(--rfp-text-mid);
    line-height: 1.68;
}

/* ─── Complete RFP Kit CTA ──────────────────────────────────── */
#lms-rfp-page .rfp-kit-cta {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--rfp-green) 0%, #2B5240 100%);
    border-radius: var(--rfp-radius-lg);
    overflow: hidden;
    box-shadow: var(--rfp-shadow-lg);
    position: relative;
}
#lms-rfp-page .rfp-kit-cta::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
#lms-rfp-page .rfp-kit-cta__inner {
    display: flex;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
#lms-rfp-page .rfp-kit-cta__text { flex: 1; min-width: 260px; }
#lms-rfp-page .rfp-kit-cta__text h3 {
    font-family: var(--rfp-font-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--rfp-white);
    margin-bottom: 10px;
    line-height: 1.2;
}
#lms-rfp-page .rfp-kit-cta__text p {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
    line-height: 1.65;
}
#lms-rfp-page .rfp-kit-list {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#lms-rfp-page .rfp-kit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rfp-font-body);
    font-size: 14px;
    color: rgba(255,255,255,.85);
    list-style: none !important;
}
#lms-rfp-page .rfp-kit-list li::before { display: none !important; }
#lms-rfp-page .rfp-kit-list li svg {
    width: 18px; height: 18px;
    stroke: #80D4A8;
    flex-shrink: 0;
    overflow: visible;
}
#lms-rfp-page .rfp-kit-cta__action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#lms-rfp-page .rfp-kit-cta__note {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    text-align: center;
}

/* ─── Steps ─────────────────────────────────────────────────── */
#lms-rfp-page .rfp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--rfp-radius-lg);
    overflow: hidden;
    margin-top: 36px;
}
#lms-rfp-page .rfp-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background var(--rfp-transition);
}
#lms-rfp-page .rfp-step:hover { background: rgba(255,255,255,.1); }
#lms-rfp-page .rfp-step:last-child { border-bottom: none; }
#lms-rfp-page .rfp-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rfp-font-display);
    font-size: 22px;
    font-weight: 700;
    color: rgba(240,184,130,.4);
    background: rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.1);
    padding: 28px 0;
    flex-shrink: 0;
}
#lms-rfp-page .rfp-step__content {
    padding: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
}
#lms-rfp-page .rfp-step__content h3 {
    font-family: var(--rfp-font-display);
    font-size: 17px;
    font-weight: 700;
    color: rgba(255,255,255,.95);
    margin-bottom: 8px;
    line-height: 1.3;
}
#lms-rfp-page .rfp-step__content p {
    font-size: 15px;
    color: rgba(255,255,255,.68);
    line-height: 1.72;
}

/* ─── Personas ──────────────────────────────────────────────── */
#lms-rfp-page .rfp-personas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}
#lms-rfp-page .rfp-persona {
    background: var(--rfp-white);
    border-radius: var(--rfp-radius-lg);
    padding: clamp(24px, 3vw, 36px);
    border: 1.5px solid var(--rfp-border);
    box-shadow: var(--rfp-shadow-sm);
    transition: box-shadow var(--rfp-transition), transform var(--rfp-transition), border-color var(--rfp-transition);
}
#lms-rfp-page .rfp-persona:hover {
    box-shadow: var(--rfp-shadow-md);
    transform: translateY(-4px);
    border-color: rgba(30,58,47,.2);
}
#lms-rfp-page .rfp-persona__icon {
    width: 52px; height: 52px;
    background: rgba(30,58,47,.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
#lms-rfp-page .rfp-persona__icon svg { width: 30px; height: 30px; stroke: var(--rfp-green); }
#lms-rfp-page .rfp-persona h3 {
    font-family: var(--rfp-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 10px;
    line-height: 1.3;
}
#lms-rfp-page .rfp-persona p {
    font-family: var(--rfp-font-body);
    font-size: 14px;
    color: var(--rfp-text-mid);
    line-height: 1.72;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
#lms-rfp-page .rfp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--rfp-radius-lg);
    overflow: hidden;
    box-shadow: var(--rfp-shadow-md);
    border: 1.5px solid var(--rfp-border);
}
#lms-rfp-page .rfp-faq-item {
    background: var(--rfp-white);
    border-bottom: 1.5px solid var(--rfp-cream-dark);
}
#lms-rfp-page .rfp-faq-item:last-child { border-bottom: none; }
#lms-rfp-page .rfp-faq-item.is-open { background: #FFFCF8; }
#lms-rfp-page .rfp-faq-item__question {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 36px);
    font-family: var(--rfp-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--rfp-text);
    text-align: left;
    cursor: pointer;
    border: none !important;
    background: transparent !important;
    transition: color var(--rfp-transition);
    box-shadow: none !important;
    border-radius: 0 !important;
    white-space: normal !important;
}
#lms-rfp-page .rfp-faq-item__question span:first-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    white-space: normal !important;
    padding-right: 12px;
}
#lms-rfp-page .rfp-faq-item.is-open .rfp-faq-item__question { color: var(--rfp-green); }
#lms-rfp-page .rfp-faq-item__question:hover { color: var(--rfp-green); }
#lms-rfp-page .rfp-faq-item__icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--rfp-cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--rfp-transition), transform var(--rfp-transition);
}
#lms-rfp-page .rfp-faq-item.is-open .rfp-faq-item__icon {
    background: var(--rfp-green);
    transform: rotate(45deg);
}
#lms-rfp-page .rfp-faq-item.is-open .rfp-faq-item__icon svg { stroke: white; }
#lms-rfp-page .faq-h-line { transition: opacity var(--rfp-transition); }
#lms-rfp-page .rfp-faq-item.is-open .faq-h-line { opacity: 0; }
#lms-rfp-page .rfp-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#lms-rfp-page .rfp-faq-item.is-open .rfp-faq-item__answer { max-height: 600px; }
#lms-rfp-page .rfp-faq-item__answer p {
    font-family: var(--rfp-font-body);
    font-size: 15px;
    color: var(--rfp-text-mid);
    line-height: 1.78;
    padding: 0 clamp(20px, 3vw, 36px) clamp(18px, 2.5vw, 26px);
}

/* ─── Final CTA ─────────────────────────────────────────────── */
#lms-rfp-page .rfp-final-cta {
    background: linear-gradient(160deg, var(--rfp-dark) 0%, var(--rfp-green) 60%, var(--rfp-green-mid) 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vw, 112px) 0;
}
#lms-rfp-page .rfp-final-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(200,98,43,.08);
    pointer-events: none;
}
#lms-rfp-page .rfp-final-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(184,136,58,.06);
    pointer-events: none;
}
#lms-rfp-page .rfp-final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
#lms-rfp-page .rfp-final-cta__body {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.72;
}
#lms-rfp-page .rfp-final-cta__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 36px;
    margin-bottom: 16px;
}
#lms-rfp-page .rfp-final-cta__disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-style: italic;
}

/* ─── MODAL ─────────────────────────────────────────────────── */
.rfp-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(20,36,30,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.rfp-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.rfp-modal {
    background: var(--rfp-white);
    border-radius: var(--rfp-radius-lg);
    padding: clamp(28px, 4vw, 44px);
    max-width: 580px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 92vh;
    overflow-y: auto;
}
.rfp-modal-overlay.is-open .rfp-modal {
    transform: scale(1) translateY(0);
}
.rfp-modal__close {
    position: absolute !important;
    top: 16px !important; right: 16px !important;
    width: 36px !important; height: 36px !important;
    border-radius: 50% !important;
    background: var(--rfp-cream-dark) !important;
    border: none !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background var(--rfp-transition), transform var(--rfp-transition);
    box-shadow: none !important;
    padding: 0 !important;
}
.rfp-modal__close:hover {
    background: var(--rfp-cream-mid) !important;
    transform: rotate(90deg) !important;
}
.rfp-modal__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.rfp-modal__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rfp-font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
}
.rfp-modal__title {
    font-family: var(--rfp-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 4px;
    line-height: 1.2;
}
.rfp-modal__subtitle {
    font-family: var(--rfp-font-body);
    font-size: 14px;
    color: var(--rfp-text-light);
    line-height: 1.55;
}

/* Form */
.rfp-modal__form { display: flex; flex-direction: column; gap: 14px; }
.rfp-form-row { display: flex; gap: 14px; }
.rfp-form-row--half > .rfp-form-field { flex: 1; min-width: 0; }
.rfp-form-field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.rfp-form-field label {
    font-family: var(--rfp-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--rfp-text);
    letter-spacing: 0.02em;
}
.rfp-form-field label span { color: var(--rfp-terra); }
.rfp-form-field input,
.rfp-form-field select {
    padding: 11px 14px !important;
    border: 1.5px solid var(--rfp-border) !important;
    border-radius: 8px !important;
    font-family: var(--rfp-font-body) !important;
    font-size: 15px !important;
    color: var(--rfp-text) !important;
    background: var(--rfp-cream) !important;
    transition: border-color var(--rfp-transition), box-shadow var(--rfp-transition);
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
    appearance: auto;
}
.rfp-form-field select { cursor: pointer; }
.rfp-form-field input:focus,
.rfp-form-field select:focus {
    border-color: var(--rfp-green) !important;
    box-shadow: 0 0 0 3px rgba(30,58,47,.12) !important;
    background: var(--rfp-white) !important;
}
.rfp-form-field input.has-error,
.rfp-form-field select.has-error { border-color: #C0392B !important; }
.rfp-field-error {
    font-family: var(--rfp-font-body);
    font-size: 12px;
    color: #C0392B;
    min-height: 16px;
    display: block;
}
.rfp-modal__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--rfp-font-body);
    font-size: 12px;
    color: var(--rfp-text-light);
    line-height: 1.55;
    padding: 12px 14px;
    background: var(--rfp-cream);
    border-radius: 7px;
    margin-top: 2px;
}
.rfp-modal__privacy svg {
    flex-shrink: 0;
    margin-top: 1px;
    stroke: var(--rfp-green);
    overflow: visible;
}
.rfp-form-error {
    padding: 12px 16px;
    background: #FDF2F0;
    border: 1.5px solid #E74C3C;
    border-radius: 7px;
    font-family: var(--rfp-font-body);
    font-size: 14px;
    color: #C0392B;
}
.rfp-btn--modal-submit {
    background: var(--rfp-green) !important;
    color: var(--rfp-white) !important;
    border: none !important;
    padding: 15px 28px !important;
    width: 100% !important;
    justify-content: center !important;
    font-family: var(--rfp-font-body) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 4px;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(30,58,47,.25) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    gap: 9px;
    transition: all var(--rfp-transition);
}
.rfp-btn--modal-submit:hover { background: var(--rfp-green-mid) !important; }
.rfp-btn--modal-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.rfp-spinner { animation: rfpSpin 0.8s linear infinite; }
@keyframes rfpSpin { to { transform: rotate(360deg); } }

/* Modal success */
.rfp-modal__success {
    text-align: center;
    padding: 24px 0 8px;
}
.rfp-modal__success-icon {
    width: 64px; height: 64px;
    background: rgba(30,58,47,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.rfp-modal__success-icon svg { stroke: var(--rfp-green); width: 32px; height: 32px; }
.rfp-modal__success h3 {
    font-family: var(--rfp-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--rfp-green);
    margin-bottom: 10px;
}
.rfp-modal__success p {
    font-family: var(--rfp-font-body);
    font-size: 15px;
    color: var(--rfp-text-mid);
    margin-bottom: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.rfp-modal__success-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    #lms-rfp-page .rfp-hero__inner {
        grid-template-columns: 1fr;
    }
    #lms-rfp-page .rfp-hero__visual { display: none; }
    #lms-rfp-page .rfp-sheets-grid  { grid-template-columns: repeat(2, 1fr); }
    #lms-rfp-page .rfp-personas      { grid-template-columns: repeat(2, 1fr); }
    #lms-rfp-page .rfp-section-list--grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    #lms-rfp-page .rfp-stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    #lms-rfp-page .rfp-stat {
        border-right: none;
        border-bottom: 1.5px solid var(--rfp-border);
    }
    #lms-rfp-page .rfp-stat:nth-child(2n) { border-right: none; }
    #lms-rfp-page .rfp-stat:nth-child(n+3) { border-bottom: none; }

    #lms-rfp-page .rfp-compare-cards { grid-template-columns: 1fr; }
    #lms-rfp-page .rfp-compare-card__vs {
        padding: 14px 36px;
        width: 100%;
        text-align: center;
        border-left: none;
        border-right: none;
        border-top: 1.5px solid var(--rfp-border);
        border-bottom: 1.5px solid var(--rfp-border);
    }
    #lms-rfp-page .rfp-personas    { grid-template-columns: 1fr; }
    #lms-rfp-page .rfp-sheets-grid { grid-template-columns: 1fr; }

    .rfp-form-row--half { flex-direction: column; }

    #lms-rfp-page .rfp-step { grid-template-columns: 56px 1fr; }
    #lms-rfp-page .rfp-step__num { font-size: 18px; }

    #lms-rfp-page .rfp-cta-banner__inner { flex-direction: column; text-align: center; }
    #lms-rfp-page .rfp-cta-banner__actions { justify-content: center; }
    #lms-rfp-page .rfp-cta-banner__text h2 { font-size: clamp(20px, 5vw, 28px); }

    #lms-rfp-page .rfp-kit-cta__inner  { flex-direction: column; text-align: center; }
    #lms-rfp-page .rfp-kit-cta__action { width: 100%; }
    #lms-rfp-page .rfp-kit-cta__text   { text-align: left; }
    #lms-rfp-page .rfp-btn--kit        { width: 100%; justify-content: center; }

    #lms-rfp-page .rfp-final-cta__buttons { flex-direction: column; align-items: stretch; }
    #lms-rfp-page .rfp-final-cta__buttons .rfp-btn { justify-content: center; }

    #lms-rfp-page .rfp-hero__ctas { flex-direction: column; }
    #lms-rfp-page .rfp-hero__ctas .rfp-btn { justify-content: center; }

    #lms-rfp-page .rfp-reason { grid-template-columns: 52px 1fr; }
    #lms-rfp-page .rfp-reason__num { font-size: 13px; }
}

@media (max-width: 480px) {
    #lms-rfp-page .rfp-stats__inner { grid-template-columns: 1fr 1fr; }
    #lms-rfp-page .rfp-stat { padding: 16px 12px; }
    #lms-rfp-page .rfp-btn--xl { padding: 15px 22px; font-size: 15px; }
    .rfp-modal { padding: 22px 18px; }
    #lms-rfp-page .rfp-inside-block__title { flex-direction: column; align-items: flex-start; }
}

/* ─── Focus & Accessibility ─────────────────────────────────── */
#lms-rfp-page .rfp-btn:focus-visible,
#lms-rfp-page .rfp-faq-item__question:focus-visible,
.rfp-modal__close:focus-visible {
    outline: 3px solid var(--rfp-terra) !important;
    outline-offset: 3px;
}

/* ─── Print ─────────────────────────────────────────────────── */
@media print {
    .rfp-modal-overlay,
    #lms-rfp-page .rfp-hero__scroll-hint,
    #lms-rfp-page .rfp-cta-banner,
    #lms-rfp-page .rfp-kit-cta,
    #lms-rfp-page .rfp-final-cta { display: none; }
}
