*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--rf-body-bg, #F8FAFC);
    color: var(--rf-text, #162033);
    font-family: var(--rf-font-family, Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: var(--rf-body-size, 16px);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: var(--rf-link, #002050); text-decoration: none; }
a:hover { color: var(--rf-secondary, #2F6546); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--rf-border, #E2E8F0);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--rf-text, #162033);
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--rf-secondary); box-shadow: 0 0 0 4px rgba(47,101,70,.12); }
label { display: grid; gap: 7px; font-weight: 500; color: #24314b; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { width: auto; height: auto; clip: auto; padding: 12px; background: #fff; z-index: 99999; }

.rf-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.rf-narrow { width: min(780px, calc(100% - 40px)); }
.rf-readable { width: min(820px, calc(100% - 40px)); font-size: 16px; }
.rf-section { padding: 76px 0; }
.rf-section-soft { background: linear-gradient(180deg, rgba(47,101,70,.055), rgba(200,138,19,.035)); }
.rf-section-head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.rf-section-head p { margin: 8px auto 0; color: #5d697c; }
.rf-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--rf-secondary); font-size: 12px; line-height: 1.2; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.rf-eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 99px; background: var(--rf-accent); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 12px; color: var(--rf-primary); line-height: 1.2; font-family: "Plus Jakarta Sans", Manrope, Inter, system-ui, sans-serif; font-weight: var(--rf-heading-weight, 600); letter-spacing: -.02em; }
h1 { font-size: clamp(24px, 2.4vw, 26px); }
h2 { font-size: var(--rf-heading-size, 26px); }
h3 { font-size: clamp(18px, 1.8vw, 22px); }
p { margin: 0 0 16px; color: #556173; }

.rf-site-header { background: var(--rf-header-bg, #fff); z-index: 999; }
.has-sticky-header .rf-site-header { position: sticky; top: 0; }
.has-header-shadow .rf-site-header { box-shadow: 0 8px 24px rgba(0,32,80,.07); }
.rf-site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,32,80,.11); }
.rf-topbar {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
    color: var(--rf-primary, #002050);
    font-family: var(--rf-topbar-font-family, Manrope, "Plus Jakarta Sans", Inter, system-ui, sans-serif);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .005em;
    border-bottom: 1px solid rgba(0,32,80,.08);
}
.rf-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 18px; }
.rf-topbar-left { display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap; }
.rf-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #31425d;
    line-height: 1.15;
    white-space: nowrap;
}
.rf-topbar-item:hover { color: var(--rf-secondary, #2F6546); }
.rf-topbar-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(47,101,70,.08);
    border: 1px solid rgba(47,101,70,.13);
    color: var(--rf-secondary, #2F6546);
    font-size: 11px;
    line-height: 1;
}
.rf-topbar-company-no {
    color: var(--rf-primary, #002050);
    font-weight: 600;
}
.rf-topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: var(--rf-primary, #002050);
    border: 1px solid rgba(0,32,80,.08);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0,32,80,.10);
}
.rf-topbar-cta:hover { color: #fff; border-color: rgba(200,138,19,.55); background: var(--rf-secondary, #2F6546); }
.rf-main-header { background: var(--rf-header-bg, #fff); }
.rf-header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.rf-logo img, .rf-logo .custom-logo { width: var(--rf-logo-desktop, 148px); max-height: 70px; object-fit: contain; }
.rf-logo-footer img, .rf-logo-footer .custom-logo { width: var(--rf-footer-logo, 145px); }
.rf-text-logo { display: inline-flex; align-items: baseline; gap: 6px; color: var(--rf-primary); font-weight: 700; letter-spacing: .03em; }
.rf-text-logo span { font-size: 22px; }
.rf-text-logo small { color: var(--rf-secondary); font-size: 13px; letter-spacing: .12em; }
.rf-desktop-nav { flex: 1; display: flex; justify-content: center; }
.rf-menu, .rf-mobile-menu, .rf-footer-menu { margin: 0; padding: 0; list-style: none; }
.rf-menu { display: flex; align-items: center; gap: 4px; }
.rf-menu > li { position: relative; }
.rf-menu a { display: flex; align-items: center; padding: 12px 11px; color: var(--rf-header-text, #23304a); font-family: Inter, Manrope, system-ui, sans-serif; font-size: var(--rf-menu-size, 14px); font-weight: var(--rf-menu-weight, 500); line-height: 1.2; position: relative; }
.rf-menu > li > a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 7px; height: 2px; border-radius: 99px; background: var(--rf-menu-hover); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.rf-menu > li:hover > a::after, .rf-menu > li.current-menu-item > a::after, .rf-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.rf-menu .sub-menu { opacity: 0; visibility: hidden; transform: translateY(10px); position: absolute; top: 100%; left: 0; min-width: 236px; background: #fff; border: 1px solid var(--rf-border); border-radius: 18px; padding: 10px; box-shadow: 0 18px 50px rgba(0,32,80,.12); transition: all .22s ease; list-style: none; z-index: 50; }
.rf-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.rf-menu .sub-menu a { border-radius: 12px; padding: 11px 12px; }
.rf-menu .sub-menu a:hover { background: rgba(47,101,70,.08); color: var(--rf-secondary); }
.rf-header-actions { display: flex; align-items: center; gap: 12px; }

.rf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 18px; border: 1px solid transparent; font-size: var(--rf-button-size, 14px); font-weight: 600; line-height: 1.1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.rf-btn:hover { transform: translateY(-1px); }
.rf-btn-primary { color: #fff; background: var(--rf-button); box-shadow: 0 12px 25px rgba(0,32,80,.14); }
.rf-btn-primary:hover { color: #fff; background: var(--rf-button-hover); box-shadow: 0 14px 28px rgba(47,101,70,.18); }
.rf-btn-outline { background: #fff; color: var(--rf-primary); border-color: rgba(0,32,80,.16); }
.rf-btn-outline:hover { border-color: var(--rf-secondary); color: var(--rf-secondary); background: rgba(47,101,70,.06); }
.rf-btn-small { padding: 10px 15px; font-size: 13px; }
.rf-btn-full { width: 100%; }

.rf-mobile-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--rf-border); border-radius: 14px; background: #fff; padding: 9px; cursor: pointer; }
.rf-mobile-toggle span { display: block; height: 2px; background: var(--rf-primary); margin: 5px 0; border-radius: 2px; }
.rf-mobile-overlay { position: fixed; inset: 0; background: rgba(0,32,80,.38); opacity: 0; visibility: hidden; transition: .25s ease; z-index: 1000; }
.rf-mobile-drawer { position: fixed; top: 0; right: 0; width: min(390px, 90vw); height: 100vh; overflow-y: auto; background: #fff; transform: translateX(100%); transition: transform .28s ease; z-index: 1001; padding: 18px; box-shadow: -20px 0 50px rgba(0,32,80,.16); }
.mobile-menu-open .rf-mobile-overlay { opacity: 1; visibility: visible; }
.mobile-menu-open .rf-mobile-drawer { transform: translateX(0); }
.rf-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--rf-border); }
.rf-logo-mobile img, .rf-logo-mobile .custom-logo { width: var(--rf-logo-mobile, 118px); }
.rf-mobile-close { width: 40px; height: 40px; border-radius: 14px; border: 1px solid var(--rf-border); background: #fff; font-size: 26px; color: var(--rf-primary); cursor: pointer; }
.rf-mobile-nav { padding: 16px 0; }
.rf-mobile-menu li { border-bottom: 1px solid rgba(226,232,240,.8); position: relative; }
.rf-mobile-menu a { display: block; padding: 13px 44px 13px 0; color: #24314b; font-weight: 600; }
.rf-submenu-toggle { position: absolute; top: 7px; right: 0; width: 34px; height: 34px; border: 1px solid var(--rf-border); border-radius: 11px; background: #fff; color: var(--rf-primary); cursor: pointer; font-weight: 700; }
.rf-mobile-menu .sub-menu { display: none; list-style: none; padding: 0 0 10px 14px; margin: 0; }
.rf-mobile-menu li.is-open > .sub-menu { display: block; }
.rf-mobile-tools { display: grid; gap: 14px; padding-top: 8px; }
.rf-mobile-contact { display: grid; gap: 4px; color: #5d697c; font-size: 14px; padding: 14px; background: rgba(47,101,70,.07); border-radius: 16px; }

.rf-hero { background: radial-gradient(circle at top right, rgba(200,138,19,.11), transparent 30%), linear-gradient(180deg, #fff, rgba(47,101,70,.045)); }
.rf-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr); gap: 34px; align-items: center; }
.rf-hero-copy h1 { margin-top: 12px; max-width: 660px; }
.rf-hero-copy p { max-width: 640px; font-size: 18px; }
.rf-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.rf-hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 26px 0 0; list-style: none; color: #4d5a70; font-size: 14px; }
.rf-hero-points li::before { content: "✓"; color: var(--rf-secondary); font-weight: 700; margin-right: 7px; }
.rf-quick-card, .rf-hero-panel { background: rgba(255,255,255,.9); border: 1px solid rgba(226,232,240,.9); border-radius: 28px; padding: 28px; box-shadow: 0 24px 70px rgba(0,32,80,.12); }
.rf-card-badge { display: inline-flex; background: rgba(200,138,19,.11); color: #875b0d; border: 1px solid rgba(200,138,19,.18); border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 700; margin-bottom: 15px; }
.rf-mini-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0; }
.rf-mini-options span { background: rgba(47,101,70,.08); border: 1px solid rgba(47,101,70,.12); border-radius: 14px; padding: 10px; text-align: center; color: var(--rf-secondary); font-weight: 600; }
.rf-page-hero { padding: 74px 0; background: radial-gradient(circle at 15% 0%, rgba(200,138,19,.13), transparent 22%), linear-gradient(180deg, #fff, rgba(47,101,70,.055)); text-align: center; }
.rf-page-hero h1 { margin-top: 12px; }
.rf-loan-hero { text-align: left; }
.rf-hero-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: rgba(47,101,70,.09); font-size: 34px; margin-bottom: 18px; }

.rf-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.rf-card-grid.rf-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rf-card, .rf-post-card, .rf-trust-card { background: var(--rf-card, #fff); border: 1px solid var(--rf-border, #E2E8F0); border-radius: 22px; padding: 24px; box-shadow: 0 15px 45px rgba(0,32,80,.06); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.rf-card:hover, .rf-post-card:hover, .rf-trust-card:hover { transform: translateY(-3px); box-shadow: 0 20px 54px rgba(0,32,80,.1); border-color: rgba(47,101,70,.2); }
.rf-card-icon { width: 50px; height: 50px; display: grid; place-items: center; background: rgba(47,101,70,.08); border-radius: 17px; margin-bottom: 16px; font-size: 24px; }
.rf-card p { font-size: 15px; }
.rf-card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--rf-primary); font-weight: 700; font-size: 14px; }
.rf-card-link::after { content: "→"; color: var(--rf-accent); transition: transform .2s ease; }
.rf-card-link:hover::after { transform: translateX(3px); }
.rf-two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items: center; }
.rf-feature-list { display: grid; gap: 14px; }
.rf-feature-list > div { background: #fff; border: 1px solid var(--rf-border); border-radius: 20px; padding: 18px; box-shadow: 0 12px 34px rgba(0,32,80,.05); }
.rf-feature-list strong { display: block; color: var(--rf-primary); margin-bottom: 3px; }
.rf-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.rf-check-list li { background: #fff; border: 1px solid var(--rf-border); border-radius: 16px; padding: 13px 15px; }
.rf-check-list li::before { content: "✓"; color: var(--rf-secondary); margin-right: 10px; font-weight: 700; }
.rf-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.rf-steps-large { grid-template-columns: repeat(4, minmax(0,1fr)); }
.rf-step { background: #fff; border: 1px solid var(--rf-border); border-radius: 22px; padding: 24px; position: relative; box-shadow: 0 15px 45px rgba(0,32,80,.05); }
.rf-step span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--rf-primary); color: #fff; border-radius: 14px; margin-bottom: 16px; font-weight: 700; }
.rf-trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.rf-trust-card strong { display: block; color: var(--rf-primary); margin-bottom: 6px; }
.rf-trust-card span { color: #5d697c; font-size: 14px; }

.rf-home-company-details { margin-top: 20px; }
.rf-company-card {
    background: #fff;
    border: 1px solid rgba(0,32,80,.10);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 52px rgba(0,32,80,.07);
}
.rf-company-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0,32,80,.08);
}
.rf-company-card-head strong {
    color: var(--rf-primary);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: .02em;
}
.rf-company-kicker {
    color: var(--rf-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.rf-company-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin: 0;
}
.rf-company-details div {
    background: rgba(0,32,80,.025);
    border: 1px solid rgba(0,32,80,.055);
    border-radius: 16px;
    padding: 13px 14px;
}
.rf-company-details dt {
    margin: 0 0 5px;
    color: #637086;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.rf-company-details dd {
    margin: 0;
    color: #20304a;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}
.rf-company-card-compact .rf-company-details { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rf-footer-registration {
    display: grid;
    gap: 5px;
    margin-top: 14px;
    color: #43516a;
    font-size: 12.5px;
    line-height: 1.45;
}
.rf-footer-registration span:first-child {
    color: var(--rf-primary);
    font-weight: 700;
}
.rf-contact-cta-card { margin-top: 18px; }
.rf-mobile-contact a {
    display: block;
    color: var(--rf-primary);
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.rf-mobile-contact a:hover { color: var(--rf-secondary); }

.rf-cta-band { background: linear-gradient(135deg, var(--rf-primary), #123b75); color: #fff; }
.rf-cta-band h2, .rf-cta-band p, .rf-cta-band .rf-eyebrow { color: #fff; }
.rf-cta-band .rf-eyebrow::before { background: var(--rf-accent); }
.rf-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.rf-cta-inner p { opacity: .86; margin-bottom: 0; }

.rf-application-form { max-width: 920px; margin: 0 auto; background: #fff; border: 1px solid var(--rf-border); border-radius: 28px; padding: 28px; box-shadow: 0 24px 70px rgba(0,32,80,.09); }
.rf-form-progress { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 26px; }
.rf-form-progress span { height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(0,32,80,.07); color: var(--rf-primary); font-weight: 700; }
.rf-form-progress span.active { background: var(--rf-primary); color: #fff; }
.rf-form-step { display: none; }
.rf-form-step.active { display: block; }
.rf-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.rf-form-grid label:has(textarea) { grid-column: 1 / -1; }
.rf-review-box { background: rgba(47,101,70,.06); border: 1px solid rgba(47,101,70,.14); border-radius: 18px; padding: 18px; color: #334155; margin-bottom: 18px; }
.rf-consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; color: #4d5a70; }
.rf-consent input { width: auto; margin-top: 6px; }
.rf-form-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
[data-submit-step] { display: none; }

.rf-faq-accordion { display: grid; gap: 14px; }
.rf-faq-item { background: #fff; border: 1px solid var(--rf-border); border-radius: 18px; overflow: hidden; box-shadow: 0 12px 34px rgba(0,32,80,.05); }
.rf-faq-item button { width: 100%; border: 0; background: transparent; padding: 18px; display: flex; align-items: center; justify-content: space-between; text-align: left; cursor: pointer; color: var(--rf-primary); font-weight: 600; }
.rf-faq-item button b { color: var(--rf-accent); font-size: 20px; }
.rf-faq-content { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.rf-faq-content p { padding: 0 18px 18px; margin: 0; }
.rf-faq-item.is-open .rf-faq-content { max-height: 220px; }
.rf-faq-list details { background: #fff; border: 1px solid var(--rf-border); border-radius: 18px; padding: 16px 18px; margin-bottom: 12px; }
.rf-faq-list summary { cursor: pointer; color: var(--rf-primary); font-weight: 600; }

.rf-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.rf-post-grid.compact { grid-template-columns: repeat(3, minmax(0,1fr)); }
.rf-post-card { padding: 0; overflow: hidden; }
.rf-post-thumb { height: 190px; background: linear-gradient(135deg, rgba(0,32,80,.1), rgba(47,101,70,.1)); display: grid; place-items: center; color: var(--rf-primary); font-weight: 700; }
.rf-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rf-post-content { padding: 22px; }
.rf-post-meta { color: #667085; font-size: 13px; margin-bottom: 8px; }
.rf-post-meta a { color: #667085; }
.rf-post-card h2, .rf-post-card h3 { font-size: 20px; }
.rf-pagination { margin-top: 30px; text-align: center; }
.rf-single-thumb img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 26px; margin-top: -34px; box-shadow: 0 18px 50px rgba(0,32,80,.12); }
.rf-readable h2, .rf-readable h3 { margin-top: 26px; }
.rf-readable ul, .rf-readable ol { color: #556173; }

.rf-site-footer { background: var(--rf-footer-bg, #F3F6F4); border-top: 1px solid rgba(0,32,80,.08); }
.rf-footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 28px; padding: 58px 0 38px; align-items: start; }
.rf-footer-brand p { max-width: 330px; font-size: 14px; margin-top: 14px; }
.rf-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.rf-socials a { padding: 7px 10px; border: 1px solid rgba(0,32,80,.12); border-radius: 999px; font-size: 12px; color: var(--rf-primary); background: #fff; }
.rf-footer-title { width: 100%; display: flex; align-items: center; justify-content: space-between; border: 0; background: transparent; padding: 0 0 12px; color: var(--rf-primary); font-size: 16px; font-weight: 600; text-align: left; }
.rf-footer-title span { display: none; }
.rf-footer-menu { display: grid; gap: 9px; }
.rf-footer-menu a, .rf-footer-contact p { color: var(--rf-footer-text, #536071); font-size: 14px; }
.rf-footer-menu a { color: var(--rf-footer-link, #002050); }
.rf-footer-menu a { position: relative; display: inline-flex; }
.rf-footer-menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--rf-footer-hover, var(--rf-menu-hover)); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.rf-footer-menu a:hover::after { transform: scaleX(1); }
.rf-footer-contact p { margin: 0 0 8px; }
.rf-footer-bottom { border-top: 1px solid rgba(0,32,80,.08); padding: 18px 0; }
.rf-footer-bottom p { margin: 0; font-size: 13px; color: #617085; }

/* Polylang language switcher */
.rf-lang-switcher { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rf-lang-switcher .rf-lang-link { min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 0 9px; border: 1px solid var(--rf-border, #E2E8F0); border-radius: 999px; background: #fff; color: var(--rf-primary, #002050); font-size: 12px; font-weight: 700; line-height: 1; letter-spacing: .03em; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.rf-lang-switcher .rf-lang-link:hover { transform: translateY(-1px); border-color: var(--rf-accent, #C88A13); color: var(--rf-secondary, #2F6546); }
.rf-lang-switcher .rf-lang-link.is-active { background: var(--rf-primary, #002050); border-color: var(--rf-primary, #002050); color: #fff; }
.rf-lang-mobile { width: 100%; justify-content: center; padding: 4px 0 2px; }
.rf-lang-footer { margin: 14px 0 0; }
.rf-lang-footer .rf-lang-link { background: rgba(255,255,255,.72); }

.rf-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 998; background: #1f9d55; color: #fff; border-radius: 999px; padding: 13px 16px; font-weight: 700; box-shadow: 0 16px 30px rgba(31,157,85,.28); }
.rf-whatsapp:hover { color: #fff; transform: translateY(-1px); }

@media (max-width: 1024px) {
    .rf-container { width: min(100% - 32px, 960px); }
    .rf-desktop-nav { display: none; }
    .rf-mobile-toggle { display: block; }
    .rf-header-actions .rf-btn { display: none; }
    .rf-lang-desktop { display: none; }
    .rf-hero-grid, .rf-two-col { grid-template-columns: 1fr; }
    .rf-card-grid, .rf-post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .rf-steps, .rf-steps-large, .rf-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .rf-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .rf-container, .rf-narrow, .rf-readable { width: min(100% - 26px, 720px); }
    .rf-section { padding: 52px 0; }
    .rf-page-hero { padding: 54px 0; }
    .rf-topbar-inner { min-height: 42px; }
    .rf-topbar-left { gap: 8px 12px; }
    .rf-topbar-address, .rf-topbar-company-no { display: none; }
    .rf-topbar-phone, .rf-topbar-email { display: inline-flex; }
    .rf-topbar-cta { padding: 7px 10px; }
    .rf-header-inner { min-height: 66px; }
    .rf-logo img, .rf-logo .custom-logo { width: var(--rf-logo-mobile, 118px); }
    h1 { font-size: 25px; }
    h2 { font-size: min(var(--rf-heading-size, 26px), 24px); }
    .rf-hero-copy p { font-size: 16px; }
    .rf-card-grid, .rf-post-grid, .rf-post-grid.compact, .rf-form-grid, .rf-trust-grid, .rf-steps, .rf-steps-large, .rf-company-details, .rf-company-card-compact .rf-company-details { grid-template-columns: 1fr; }
    .rf-quick-card, .rf-hero-panel, .rf-application-form { border-radius: 22px; padding: 22px; }
    .rf-cta-inner { display: grid; }
    .rf-footer-grid { grid-template-columns: 1fr; gap: 0; padding: 42px 0 24px; }
    .rf-footer-brand { padding-bottom: 22px; }
    .rf-footer-title { padding: 15px 0; border-top: 1px solid rgba(0,32,80,.09); cursor: pointer; }
    .rf-footer-title span { display: inline; color: var(--rf-accent); font-size: 20px; }
    .rf-footer-panel { display: none; padding-bottom: 16px; }
    .rf-footer-col.is-open .rf-footer-panel { display: block; }
    .rf-form-progress span { height: 32px; border-radius: 10px; }
}

@media (max-width: 480px) {
    .rf-container, .rf-narrow, .rf-readable { width: min(100% - 22px, 440px); }
    .rf-topbar { font-size: 12px; }
    .rf-topbar-inner { min-height: auto; padding-top: 7px; padding-bottom: 7px; justify-content: center; }
    .rf-topbar-left { width: 100%; justify-content: center; gap: 7px 10px; }
    .rf-topbar-phone, .rf-topbar-email { max-width: 100%; }
    .rf-topbar-email span:last-child { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
    .rf-topbar-cta { display: none; }
    .rf-company-card { padding: 20px; border-radius: 20px; }
    .rf-company-card-head { display: grid; gap: 5px; }
    .rf-section { padding: 44px 0; }
    .rf-page-hero { padding: 46px 0; }
    h1 { font-size: 25px; }
    .rf-hero-actions, .rf-form-actions { display: grid; grid-template-columns: 1fr; }
    .rf-btn { width: 100%; }
    .rf-mini-options { grid-template-columns: 1fr; }
    .rf-card, .rf-post-content { padding: 20px; }
    .rf-mobile-drawer { width: 92vw; }
}

/* ------------------------------------------------------------
   RFFLINK LTD updated professional top bar + home page sections
------------------------------------------------------------- */
.rf-topbar {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    border-bottom: 1px solid rgba(0, 32, 80, .08);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.65);
}
.rf-topbar-inner { min-height: 44px; }
.rf-topbar-left { gap: 8px 14px; }
.rf-topbar-item { font-size: 12.5px; color: #273851; }
.rf-topbar-address span:last-child { max-width: 520px; overflow: hidden; text-overflow: ellipsis; }
.rf-topbar-icon { background: #fff; box-shadow: 0 6px 16px rgba(0,32,80,.055); }
.rf-topbar-phone, .rf-topbar-email { font-weight: 600; color: var(--rf-primary, #002050); }
.rf-mobile-contact { display: grid; gap: 8px; margin-top: 14px; padding: 14px; border-radius: 18px; background: rgba(47,101,70,.06); border: 1px solid rgba(47,101,70,.12); }
.rf-mobile-contact a, .rf-mobile-contact span { color: #263650; font-size: 14px; word-break: break-word; }
.rf-mobile-contact a:first-child { color: var(--rf-primary, #002050); font-weight: 700; }

.rff-home-main { background: #fff; }
.rff-home-section { padding: 72px 0; position: relative; overflow: hidden; }
.rff-home-section:nth-of-type(even) { background: #f8faf9; }
.rff-section-head { max-width: 740px; margin: 0 auto 34px; text-align: center; }
.rff-section-head p { max-width: 680px; margin: 0 auto; color: #596779; }
.rff-section-copy p { max-width: 650px; }
.rff-two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 34px; align-items: center; }
.rff-two-column-balanced { gap: 42px; }

.rff-hero { position: relative; min-height: 620px; overflow: hidden; background: #eef3f1; }
.rff-hero-track { position: relative; min-height: 620px; }
.rff-hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s ease; background-size: cover; background-position: center; }
.rff-hero-slide.is-active { opacity: 1; visibility: visible; }
.rff-hero-slide-1 { background-image: linear-gradient(135deg, rgba(0,32,80,.88), rgba(47,101,70,.72)), url('https://tour.buildmyportfolio.org/wp-content/uploads/2026/05/ChatGPT-Image-May-23-2026-11_49_18-PM.webp'); }
.rff-hero-slide-2 { background-image: linear-gradient(135deg, rgba(0,32,80,.86), rgba(200,138,19,.50)), url('https://tour.buildmyportfolio.org/wp-content/uploads/2026/05/ChatGPT-Image-May-24-2026-12_26_57-AM.webp'); }
.rff-hero-slide-3 { background-image: linear-gradient(135deg, rgba(0,32,80,.88), rgba(47,101,70,.66)), url('https://tour.buildmyportfolio.org/wp-content/uploads/2026/05/ChatGPT-Image-May-24-2026-12_30_32-AM.webp'); }
.rff-hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 82% 24%, rgba(255,255,255,.16), transparent 34%); pointer-events: none; }
.rff-hero-content { position: relative; z-index: 2; min-height: 620px; display: grid; grid-template-columns: minmax(0, 1.05fr) 340px; align-items: center; gap: 34px; padding-top: 34px; padding-bottom: 34px; }
.rff-hero-copy { max-width: 720px; }
.rff-hero-label { color: rgba(255,255,255,.92); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(8px); }
.rff-hero-label::before { background: var(--rf-accent, #C88A13); }
.rff-hero h1 { max-width: 680px; margin-top: 16px; color: #fff; font-size: clamp(24px, 3vw, 26px); font-weight: 600; letter-spacing: -.02em; }
.rff-hero p { max-width: 690px; color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.75; }
.rff-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.rff-hero .rf-btn-outline { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.35); color: #fff; }
.rff-hero .rf-btn-outline:hover { background: #fff; color: var(--rf-primary, #002050); }
.rff-hero-panel { align-self: end; margin-bottom: 26px; padding: 22px; border-radius: 22px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); box-shadow: 0 24px 60px rgba(0,0,0,.14); backdrop-filter: blur(14px); display: grid; gap: 7px; }
.rff-hero-panel span { color: rgba(255,255,255,.72); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.rff-hero-panel strong { color: #fff; font-size: 18px; line-height: 1.3; }
.rff-hero-panel small { color: rgba(255,255,255,.82); }
.rff-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .22s ease, transform .22s ease; }
.rff-slider-arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.03); }
.rff-slider-prev { left: 24px; }
.rff-slider-next { right: 24px; }
.rff-slider-dots { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; gap: 9px; z-index: 4; }
.rff-slider-dots button { width: 10px; height: 10px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.70); background: rgba(255,255,255,.35); cursor: pointer; transition: width .22s ease, background .22s ease; }
.rff-slider-dots button.is-active { width: 28px; background: var(--rf-accent, #C88A13); border-color: var(--rf-accent, #C88A13); }

.rff-contact-row { display: grid; gap: 10px; margin-top: 20px; padding: 16px; border: 1px solid rgba(0,32,80,.09); border-radius: 18px; background: #fff; box-shadow: 0 12px 34px rgba(0,32,80,.045); }
.rff-contact-row a { font-weight: 700; color: var(--rf-primary, #002050); }
.rff-contact-row span { color: #5b687a; }
.rff-trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.rff-trust-box { min-height: 126px; padding: 20px; border: 1px solid rgba(0,32,80,.08); border-radius: 20px; background: #fff; box-shadow: 0 16px 46px rgba(0,32,80,.055); display: grid; align-content: center; gap: 10px; }
.rff-trust-box span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: rgba(47,101,70,.10); color: var(--rf-secondary, #2F6546); font-weight: 700; }
.rff-trust-box strong { color: var(--rf-primary, #002050); line-height: 1.3; font-weight: 600; }

.rff-loan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.rff-loan-card { position: relative; min-height: 260px; padding: 24px; border: 1px solid rgba(0,32,80,.08); border-radius: 22px; background: #fff; box-shadow: 0 18px 50px rgba(0,32,80,.055); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.rff-loan-card:hover { transform: translateY(-3px); border-color: rgba(47,101,70,.24); box-shadow: 0 24px 64px rgba(0,32,80,.095); }
.rff-loan-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; background: linear-gradient(135deg, rgba(0,32,80,.08), rgba(47,101,70,.09)); color: var(--rf-primary, #002050); font-size: 13px; font-weight: 700; }
.rff-loan-card h3 { font-size: 20px; }
.rff-loan-card p { color: #596779; font-size: 15px; }
.rff-text-link { position: absolute; left: 24px; right: 24px; bottom: 22px; display: inline-flex; align-items: center; gap: 6px; width: fit-content; font-weight: 700; font-size: 14px; color: var(--rf-primary, #002050); }
.rff-text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 99px; background: var(--rf-accent, #C88A13); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.rff-text-link:hover::after { transform: scaleX(1); }

.rff-process-section { background: #f8faf9; }
.rff-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; position: relative; }
.rff-process-card { position: relative; padding: 24px 20px; border-radius: 22px; background: #fff; border: 1px solid rgba(0,32,80,.08); box-shadow: 0 16px 44px rgba(0,32,80,.05); }
.rff-process-card:not(:last-child)::after { content: "→"; position: absolute; right: -16px; top: 34px; color: var(--rf-accent, #C88A13); font-weight: 700; z-index: 2; }
.rff-process-card span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 999px; background: var(--rf-primary, #002050); color: #fff; font-weight: 700; }
.rff-process-card h3 { font-size: 18px; }
.rff-process-card p { margin: 0; font-size: 14.5px; }
.rff-center-action { margin-top: 28px; text-align: center; }

.rff-image-placeholder { min-height: 440px; border-radius: 28px; background: linear-gradient(135deg, rgba(0,32,80,.12), rgba(47,101,70,.10)), url('https://tour.buildmyportfolio.org/wp-content/uploads/2026/05/ChatGPT-Image-May-23-2026-11_56_24-PM.webp'); background-size: cover; background-position: center; border: 1px solid rgba(0,32,80,.08); box-shadow: 0 22px 70px rgba(0,32,80,.08); display: grid; place-items: end start; padding: 24px; }
.rff-image-placeholder div { max-width: 320px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.72); box-shadow: 0 14px 44px rgba(0,32,80,.10); display: grid; gap: 6px; }
.rff-image-placeholder span { color: var(--rf-secondary, #2F6546); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.rff-image-placeholder strong { color: var(--rf-primary, #002050); line-height: 1.35; }

.rff-why-image { margin: 0; min-height: 440px; border-radius: 28px; overflow: hidden; border: 1px solid rgba(0,32,80,.08); box-shadow: 0 22px 70px rgba(0,32,80,.08); background: #f4f7f5; }
.rff-why-image img { width: 100%; height: 100%; min-height: 440px; display: block; object-fit: cover; object-position: center; }
.rff-check-list, .rff-mini-checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.rff-check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rff-check-list li, .rff-mini-checklist li { position: relative; padding-left: 28px; color: #475569; }
.rff-check-list li::before, .rff-mini-checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 999px; background: rgba(47,101,70,.10); color: var(--rf-secondary, #2F6546); font-size: 12px; font-weight: 800; }

.rff-responsible-card { display: grid; grid-template-columns: 1fr 330px; gap: 26px; align-items: center; padding: 34px; border-radius: 26px; background: linear-gradient(135deg, rgba(0,32,80,.06), rgba(47,101,70,.07)); border: 1px solid rgba(0,32,80,.08); box-shadow: 0 18px 60px rgba(0,32,80,.055); }
.rff-responsible-card p { margin-bottom: 0; }
.rff-badges { display: grid; gap: 10px; }
.rff-badges span { padding: 12px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(0,32,80,.09); color: var(--rf-primary, #002050); font-size: 13px; font-weight: 700; text-align: center; }

.rff-apply-card { display: grid; grid-template-columns: minmax(0, 1.1fr) 360px; gap: 28px; align-items: center; padding: 34px; border-radius: 28px; background: #fff; border: 1px solid rgba(0,32,80,.08); box-shadow: 0 22px 70px rgba(0,32,80,.075); }
.rff-mini-checklist { margin: 0; padding: 22px; border-radius: 22px; background: #f8faf9; border: 1px solid rgba(0,32,80,.08); }

.rff-language-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 760px; margin: 0 auto; }
.rff-language-cards div { padding: 24px; border-radius: 22px; background: #fff; border: 1px solid rgba(0,32,80,.08); box-shadow: 0 16px 44px rgba(0,32,80,.045); display: flex; align-items: center; gap: 14px; }
.rff-language-cards span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: rgba(0,32,80,.06); color: var(--rf-primary, #002050); font-weight: 800; }
.rff-language-cards strong { color: var(--rf-primary, #002050); }

.rff-faq-list { display: grid; gap: 12px; }
.rff-faq-list .rf-faq-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.rff-faq-list .rf-faq-panel p { margin: 0; padding: 0 18px 18px; font-size: 14.5px; }
.rff-faq-list .rf-faq-item.is-open .rf-faq-panel { max-height: 220px; }

.rff-final-cta { padding: 58px 0; background: linear-gradient(135deg, var(--rf-primary, #002050), #0f356b); }
.rff-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.rff-final-cta h2, .rff-final-cta p, .rff-final-cta .rf-eyebrow { color: #fff; }
.rff-final-cta p { max-width: 720px; color: rgba(255,255,255,.82); }
.rff-final-cta small { display: block; color: rgba(255,255,255,.72); font-size: 13px; }
.rff-final-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.rff-final-cta .rf-btn-outline { color: #fff; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.30); }
.rff-final-cta .rf-btn-outline:hover { background: #fff; color: var(--rf-primary, #002050); }

@media (max-width: 1180px) {
    .rff-slider-prev { left: 12px; }
    .rff-slider-next { right: 12px; }
}

@media (max-width: 1024px) {
    .rf-topbar-address span:last-child { max-width: 320px; }
    .rff-hero-content { grid-template-columns: 1fr; align-content: center; }
    .rff-hero-panel { width: min(100%, 420px); align-self: start; margin-bottom: 40px; }
    .rff-loan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rff-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rff-process-card:nth-child(2)::after { display: none; }
    .rff-two-column, .rff-apply-card, .rff-responsible-card { grid-template-columns: 1fr; }
    .rff-image-placeholder { min-height: 340px; }
    .rff-why-image, .rff-why-image img { min-height: 340px; }
}

@media (max-width: 768px) {
    .rf-topbar-address, .rf-topbar-company-no { display: none !important; }
    .rf-topbar-phone, .rf-topbar-email { display: inline-flex !important; }
    .rf-topbar-inner { justify-content: center; }
    .rf-topbar-left { justify-content: center; }
    .rf-topbar-cta { display: none; }
    .rff-home-section { padding: 54px 0; }
    .rff-hero, .rff-hero-track, .rff-hero-content { min-height: 590px; }
    .rff-hero-content { padding-top: 28px; padding-bottom: 64px; }
    .rff-slider-arrow { display: none; }
    .rff-trust-grid, .rff-check-list, .rff-language-cards { grid-template-columns: 1fr; }
    .rff-process-card::after { display: none !important; }
    .rff-final-cta-inner { display: grid; }
    .rff-final-actions { justify-content: flex-start; }
    .rff-apply-card, .rff-responsible-card { padding: 24px; border-radius: 24px; }
}

@media (max-width: 480px) {
    .rf-topbar-inner { padding-top: 8px; padding-bottom: 8px; }
    .rf-topbar-left { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 6px; }
    .rf-topbar-item { white-space: normal; justify-content: center; text-align: center; }
    .rf-topbar-email span:last-child { max-width: 230px; }
    .rff-hero, .rff-hero-track, .rff-hero-content { min-height: 620px; }
    .rff-hero h1 { font-size: 25px; }
    .rff-hero p { font-size: 15px; }
    .rff-hero-actions { display: grid; grid-template-columns: 1fr; }
    .rff-hero-panel { padding: 18px; border-radius: 18px; }
    .rff-loan-grid, .rff-process-grid { grid-template-columns: 1fr; }
    .rff-loan-card { min-height: auto; padding-bottom: 70px; }
    .rff-image-placeholder { min-height: 280px; padding: 16px; border-radius: 22px; }
    .rff-why-image { min-height: 280px; border-radius: 22px; }
    .rff-why-image img { min-height: 280px; }
    .rff-badges span { border-radius: 14px; }
    .rff-language-cards div { padding: 18px; }
    .rff-final-actions, .rff-center-action { display: grid; grid-template-columns: 1fr; }
}
.rf-topbar-item strong { font-weight: 700; color: var(--rf-primary, #002050); }


/* ------------------------------------------------------------
   RFFLINK LTD refined home buttons + premium home polish
------------------------------------------------------------- */
.rff-home-main .rf-btn {
    position: relative;
    min-height: 44px;
    padding: 12px 19px 12px 20px;
    letter-spacing: .01em;
    white-space: nowrap;
}
.rff-home-main .rf-btn::after {
    content: "→";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-left: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: currentColor;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform .22s ease, background .22s ease;
}
.rff-home-main .rf-btn:hover::after { transform: translateX(3px); }
.rff-home-main .rf-btn-primary {
    background: #C88A13;
    border-color: #C88A13;
    color: #fff;
    box-shadow: 0 14px 28px rgba(200,138,19,.24);
}
.rff-home-main .rf-btn-primary:hover {
    background: #a8700d;
    border-color: #a8700d;
    color: #fff;
    box-shadow: 0 18px 34px rgba(200,138,19,.28);
}
.rff-home-main .rf-btn-outline::after { background: rgba(0,32,80,.08); }
.rff-hero .rf-btn-primary {
    background: #C88A13;
    border-color: #C88A13;
    color: #fff;
}
.rff-hero .rf-btn-outline::after,
.rff-final-cta .rf-btn-outline::after { background: rgba(255,255,255,.16); }
.rff-hero .rf-btn-outline:hover::after,
.rff-final-cta .rf-btn-outline:hover::after { background: rgba(0,32,80,.08); }
.rff-home-section::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(200,138,19,.075), transparent 68%);
    right: -90px;
    top: 24px;
    pointer-events: none;
}
.rff-intro-section .rff-section-copy,
.rff-why-section .rff-section-copy {
    padding: 8px 0;
}
.rff-section-head h2,
.rff-section-copy h2,
.rff-responsible-card h2,
.rff-apply-card h2,
.rff-final-cta h2 {
    letter-spacing: -.025em;
}
.rff-trust-box,
.rff-loan-card,
.rff-process-card,
.rff-apply-card,
.rff-responsible-card {
    backdrop-filter: saturate(1.05);
}
.rff-trust-box:hover,
.rff-process-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 58px rgba(0,32,80,.08);
    border-color: rgba(200,138,19,.18);
}
.rff-trust-box,
.rff-process-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.rff-loan-icon {
    background: linear-gradient(135deg, rgba(200,138,19,.15), rgba(47,101,70,.09));
    color: #8a5b05;
}
.rff-process-card span {
    background: linear-gradient(135deg, var(--rf-primary, #002050), var(--rf-secondary, #2F6546));
    box-shadow: 0 12px 24px rgba(0,32,80,.12);
}
.rff-why-image {
    position: relative;
}
.rff-why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,32,80,.16));
    pointer-events: none;
}
.rff-responsible-card {
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,249,.98));
    border-top: 3px solid rgba(200,138,19,.55);
}
.rff-apply-card {
    background: linear-gradient(135deg, #fff 0%, #fbfcfa 100%);
    border-top: 3px solid rgba(47,101,70,.38);
}
.rff-mini-checklist {
    background: linear-gradient(135deg, rgba(0,32,80,.045), rgba(47,101,70,.055));
}
.rff-faq-section .rf-faq-item {
    border: 1px solid rgba(0,32,80,.08);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,32,80,.045);
}
.rff-final-cta {
    background: radial-gradient(circle at 82% 20%, rgba(200,138,19,.22), transparent 30%), linear-gradient(135deg, var(--rf-primary, #002050), #102f5d 58%, #173a6d);
}

@media (max-width: 768px) {
    .rff-hero-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }
    .rff-hero-actions .rf-btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 40px;
        padding: 10px 10px;
        font-size: 12.5px;
        gap: 6px;
    }
    .rff-hero-actions .rf-btn::after {
        width: 17px;
        height: 17px;
        font-size: 11px;
        flex: 0 0 17px;
    }
}

@media (max-width: 480px) {
    .rff-hero-actions {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap;
        gap: 7px;
    }
    .rff-hero-actions .rf-btn {
        width: auto !important;
        padding: 9px 8px;
        min-height: 38px;
        font-size: 11.8px;
        border-radius: 999px;
    }
    .rff-hero-actions .rf-btn::after {
        width: 16px;
        height: 16px;
        margin-left: 0;
    }
    .rff-center-action .rf-btn,
    .rff-apply-card .rf-btn,
    .rff-faq-section .rf-btn {
        width: fit-content;
    }
    .rff-section-head { margin-bottom: 26px; }
    .rff-home-section { padding: 46px 0; }
    .rff-trust-box { min-height: 104px; padding: 18px; }
}


/* ------------------------------------------------------------
   RFFLINK LTD trust counters + inline mobile actions
------------------------------------------------------------- */
.rff-stats-section {
    background:
        radial-gradient(circle at 10% 12%, rgba(47,101,70,.08), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(200,138,19,.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}
.rff-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.rff-stat-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(0,32,80,.08);
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 48px rgba(0,32,80,.07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.rff-stat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rf-primary, #002050), var(--rf-secondary, #2F6546), #C88A13);
}
.rff-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200,138,19,.24);
    box-shadow: 0 24px 68px rgba(0,32,80,.10);
}
.rff-stat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(200,138,19,.14), rgba(47,101,70,.08));
    margin-bottom: 18px;
    font-size: 22px;
}
.rff-stat-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--rf-primary, #002050);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.035em;
}
.rff-stat-card h3 {
    margin: 0 0 9px;
    color: var(--rf-primary, #002050);
    font-size: 18px;
    font-weight: 600;
}
.rff-stat-card p {
    margin: 0;
    color: #5d697c;
    line-height: 1.62;
    font-size: 13.5px;
}
.rff-home-main .rff-final-actions .rf-btn,
.rff-home-main .rff-hero-actions .rf-btn {
    max-width: 100%;
}
@media (max-width: 1024px) {
    .rff-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .rff-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .rff-stat-card { min-height: auto; padding: 20px; border-radius: 20px; }
    .rff-home-main .rff-final-actions {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: flex-start;
        width: 100%;
    }
    .rff-home-main .rff-final-actions .rf-btn {
        flex: 1 1 0;
        width: auto !important;
        min-width: 0;
        min-height: 40px;
        padding: 10px 10px;
        font-size: 12.5px;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .rff-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .rff-stat-card { padding: 15px 12px; border-radius: 18px; }
    .rff-stat-icon { width: 36px; height: 36px; font-size: 17px; border-radius: 13px; margin-bottom: 13px; }
    .rff-stat-card strong { font-size: 27px; margin-bottom: 5px; }
    .rff-stat-card h3 { font-size: 13.5px; line-height: 1.25; margin-bottom: 6px; }
    .rff-stat-card p { font-size: 11.6px; line-height: 1.48; }
    .rff-home-main .rff-final-actions { flex-wrap: nowrap !important; gap: 7px; }
    .rff-home-main .rff-final-actions .rf-btn {
        width: auto !important;
        padding: 9px 8px;
        min-height: 38px;
        font-size: 11.8px;
        border-radius: 999px;
    }
    .rff-home-main .rff-final-actions .rf-btn::after { width: 16px; height: 16px; margin-left: 0; }
}


/* ------------------------------------------------------------
   RFFLINK LTD real top-bar SVG icons refinement
------------------------------------------------------------- */
.rf-topbar-icon {
    width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 25px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,32,80,.07);
    box-shadow: 0 6px 16px rgba(0,32,80,.055);
    color: var(--rf-secondary, #2F6546);
}
.rf-svg-icon { display: inline-grid; place-items: center; line-height: 0; }
.rf-svg-icon svg,
.rff-svg-icon svg,
.rff-card-svg svg,
.rff-mini-svg svg,
.rff-related-svg svg,
.rf-hero-svg svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.rf-topbar-icon .rf-svg-icon { font-size: 14px; }
.rf-topbar-item { align-items: center; }
.rf-mobile-contact a,
.rf-mobile-contact span { line-height: 1.55; }
@media (max-width: 480px) {
    .rf-topbar-icon { width: 22px; height: 22px; flex-basis: 22px; }
    .rf-topbar-icon .rf-svg-icon { font-size: 13px; }
}

/* Real SVG icons for home trust and stats */
.rff-stat-icon .rff-stat-svg,
.rff-trust-box .rff-trust-svg { font-size: 20px; color: inherit; }
.rff-stat-icon svg,
.rff-trust-box svg { width: 1em; height: 1em; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ------------------------------------------------------------
   RFFLINK LTD top bar single-line refinement
   Keeps contact details on one clean row and prevents email wrapping.
------------------------------------------------------------- */
.rf-topbar .rf-container.rf-topbar-inner {
    width: min(1240px, calc(100% - 32px));
}
.rf-topbar-inner {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    min-height: 38px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.rf-topbar-left {
    flex: 1 1 auto;
    min-width: 0;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 8px 11px !important;
    overflow: hidden;
}
.rf-topbar-item {
    min-width: 0;
    flex: 0 1 auto;
    white-space: nowrap !important;
    text-align: left !important;
    justify-content: flex-start !important;
    font-size: 12px;
    line-height: 1.1;
}
.rf-topbar-item > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rf-topbar-address {
    flex: 1 1 390px;
    max-width: 520px;
}
.rf-topbar-address > span:last-child {
    display: block;
    max-width: 100% !important;
}
.rf-topbar-company-no,
.rf-topbar-phone,
.rf-topbar-email,
.rf-topbar-cta {
    flex: 0 0 auto;
}
.rf-topbar-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}
.rf-topbar-icon .rf-svg-icon { font-size: 13px; }
.rf-topbar-cta {
    padding: 7px 12px;
    min-height: 30px;
}

@media (max-width: 1180px) {
    .rf-topbar-address { max-width: 390px; }
    .rf-topbar-item { font-size: 11.6px; }
    .rf-topbar-left { gap: 7px !important; }
}

@media (max-width: 1024px) {
    .rf-topbar-address,
    .rf-topbar-company-no { display: none !important; }
    .rf-topbar-inner { justify-content: space-between !important; }
    .rf-topbar-left { width: auto !important; flex: 1 1 auto; justify-content: flex-start !important; }
    .rf-topbar-phone,
    .rf-topbar-email { display: inline-flex !important; }
    .rf-topbar-cta { display: inline-flex; }
}

@media (max-width: 768px) {
    .rf-topbar .rf-container.rf-topbar-inner { width: min(100% - 22px, 720px); }
    .rf-topbar-inner { justify-content: center !important; padding-top: 6px; padding-bottom: 6px; }
    .rf-topbar-left { justify-content: center !important; flex: 0 1 auto; width: 100% !important; }
    .rf-topbar-cta { display: none !important; }
    .rf-topbar-phone,
    .rf-topbar-email { flex: 0 1 auto; max-width: 50%; }
    .rf-topbar-email span:last-child { max-width: 180px !important; }
}

@media (max-width: 480px) {
    .rf-topbar { font-size: 11px; }
    .rf-topbar-inner { min-height: 34px; padding-top: 5px; padding-bottom: 5px; }
    .rf-topbar-left {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 7px !important;
    }
    .rf-topbar-item {
        white-space: nowrap !important;
        text-align: left !important;
        justify-content: flex-start !important;
        font-size: 10.8px;
    }
    .rf-topbar-icon { width: 20px; height: 20px; flex-basis: 20px; }
    .rf-topbar-icon .rf-svg-icon { font-size: 12px; }
    .rf-topbar-phone span:last-child { max-width: 116px; }
    .rf-topbar-email span:last-child { max-width: 145px !important; }
}

@media (max-width: 360px) {
    .rf-topbar .rf-container.rf-topbar-inner { width: calc(100% - 14px); }
    .rf-topbar-left { gap: 5px !important; }
    .rf-topbar-item { font-size: 10.2px; }
    .rf-topbar-icon { display: none; }
    .rf-topbar-email span:last-child { max-width: 142px !important; }
}


/* ------------------------------------------------------------
   RFFLINK LTD fixed background feature section
------------------------------------------------------------- */
.rff-fixed-banner-section {
    padding: 0;
    background: #fff !important;
}
.rff-fixed-banner {
    position: relative;
    padding: 96px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.rff-fixed-banner-card {
    max-width: 760px;
    padding: 40px 42px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 70px rgba(0,0,0,.16);
}
.rff-fixed-banner-card .rf-eyebrow {
    color: rgba(255,255,255,.92);
}
.rff-fixed-banner-card h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.12;
    max-width: 640px;
}
.rff-fixed-banner-card p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.90);
    font-size: 16px;
    line-height: 1.75;
}
.rff-fixed-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.rff-fixed-banner .rf-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.10);
}
.rff-fixed-banner .rf-btn-outline:hover {
    background: rgba(255,255,255,.96);
    color: var(--rf-primary, #002050);
}
@media (max-width: 1024px) {
    .rff-fixed-banner { padding: 82px 0; background-attachment: scroll; }
}
@media (max-width: 768px) {
    .rff-fixed-banner { padding: 72px 0; }
    .rff-fixed-banner-card {
        max-width: 100%;
        padding: 28px 20px;
        border-radius: 22px;
    }
    .rff-fixed-banner-card h2 { font-size: 25px; }
    .rff-fixed-banner-card p { font-size: 14.5px; line-height: 1.65; }
    .rff-fixed-banner-actions {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }
    .rff-fixed-banner-actions .rf-btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 40px;
        padding: 10px 10px;
        font-size: 12.5px;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .rff-fixed-banner { padding: 58px 0; }
    .rff-fixed-banner-card { padding: 22px 16px; border-radius: 18px; }
    .rff-fixed-banner-card h2 { font-size: 22px; }
    .rff-fixed-banner-card p { font-size: 13.5px; line-height: 1.58; }
    .rff-fixed-banner-actions { gap: 7px; }
    .rff-fixed-banner-actions .rf-btn {
        width: auto !important;
        padding: 9px 8px;
        min-height: 38px;
        font-size: 11.8px;
        border-radius: 999px;
    }
}


/* ------------------------------------------------------------
   RFFLINK LTD professional testimonial carousel
------------------------------------------------------------- */
.rff-testimonial-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(200,138,19,.10), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(47,101,70,.08), transparent 34%),
        linear-gradient(180deg, #f8faf9 0%, #ffffff 100%) !important;
}
.rff-testimonial-head {
    max-width: 760px;
}
.rff-testimonial-carousel {
    position: relative;
    max-width: 100%;
}
.rff-testimonial-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 2px 18px;
}
.rff-testimonial-track {
    --rff-visible: 3;
    --rff-gap: 24px;
    display: flex;
    align-items: stretch;
    gap: var(--rff-gap);
    will-change: transform;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}
.rff-testimonial-card {
    flex: 0 0 calc((100% - (var(--rff-gap) * (var(--rff-visible) - 1))) / var(--rff-visible));
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 318px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,32,80,.08);
    box-shadow: 0 18px 52px rgba(0,32,80,.075);
    position: relative;
    overflow: hidden;
}
.rff-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rf-primary, #002050), var(--rf-secondary, #2F6546), #C88A13);
}
.rff-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #C88A13;
    font-size: 15px;
    letter-spacing: .03em;
}
.rff-testimonial-card p {
    margin: 0;
    color: #425069;
    line-height: 1.72;
    font-size: 14.5px;
    flex: 1 1 auto;
}
.rff-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,32,80,.08);
}
.rff-testimonial-author > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,32,80,.10), rgba(200,138,19,.18));
    color: var(--rf-primary, #002050);
    font-weight: 700;
    font-size: 16px;
}
.rff-testimonial-author strong {
    display: block;
    color: var(--rf-primary, #002050);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}
.rff-testimonial-author small {
    display: block;
    color: #66738a;
    font-size: 12.5px;
    line-height: 1.45;
    margin-top: 2px;
}
.rff-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}
.rff-testimonial-arrow {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(0,32,80,.12);
    background: #fff;
    color: var(--rf-primary, #002050);
    box-shadow: 0 10px 28px rgba(0,32,80,.08);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.rff-testimonial-arrow:hover {
    transform: translateY(-2px);
    background: #C88A13;
    color: #fff;
    border-color: #C88A13;
}
.rff-testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 90px;
}
.rff-testimonial-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(0,32,80,.20);
    cursor: pointer;
    padding: 0;
    transition: width .22s ease, background .22s ease;
}
.rff-testimonial-dots button.is-active {
    width: 24px;
    background: #C88A13;
}
@media (max-width: 1024px) {
    .rff-testimonial-track {
        --rff-visible: 2;
        --rff-gap: 18px;
    }
    .rff-testimonial-card { min-height: 292px; }
}
@media (max-width: 768px) {
    .rff-testimonial-track {
        --rff-visible: 1;
        --rff-gap: 14px;
    }
    .rff-testimonial-viewport { padding: 2px 0 14px; }
    .rff-testimonial-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 22px;
    }
    .rff-testimonial-card p { font-size: 14px; line-height: 1.65; }
    .rff-testimonial-controls { gap: 12px; }
    .rff-testimonial-arrow { width: 38px; height: 38px; font-size: 24px; }
}
@media (max-width: 480px) {
    .rff-testimonial-card {
        padding: 22px 16px;
        border-radius: 18px;
    }
    .rff-testimonial-card p { font-size: 13.5px; }
    .rff-testimonial-author > span { width: 40px; height: 40px; flex-basis: 40px; }
    .rff-testimonial-author strong { font-size: 14px; }
    .rff-testimonial-author small { font-size: 12px; }
    .rff-testimonial-dots { min-width: 70px; gap: 6px; }
}


/* ------------------------------------------------------------
   RFFLINK LTD cookie consent modal
------------------------------------------------------------- */
html.rff-cookie-no-scroll,
body.rff-cookie-no-scroll {
    overflow: hidden !important;
}
.rff-cookie-consent[hidden] {
    display: none !important;
}
.rff-cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.rff-cookie-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 48, .66);
    backdrop-filter: blur(7px);
}
.rff-cookie-panel {
    position: relative;
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255,255,255,.70);
    box-shadow: 0 28px 90px rgba(0,32,80,.28);
    color: var(--rf-text, #162033);
}
.rff-cookie-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--rf-primary, #002050), var(--rf-secondary, #2F6546));
    box-shadow: 0 14px 32px rgba(0,32,80,.18);
}
.rff-cookie-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--rf-secondary, #2F6546);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.rff-cookie-label::before {
    content: "";
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background: var(--rf-accent, #C88A13);
}
.rff-cookie-panel h2 {
    margin: 0 0 10px;
    color: var(--rf-primary, #002050);
    font-size: 24px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -.02em;
}
.rff-cookie-panel p {
    margin: 0;
    color: #536071;
    font-size: 14.5px;
    line-height: 1.7;
}
.rff-cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}
.rff-cookie-links a {
    color: var(--rf-primary, #002050);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(200,138,19,.42);
}
.rff-cookie-links a:hover {
    color: var(--rf-accent, #C88A13);
}
.rff-cookie-actions {
    grid-column: 2;
    margin-top: 6px;
}
.rff-cookie-accept {
    width: auto;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--rf-accent, #C88A13);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(200,138,19,.28);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.rff-cookie-accept:hover {
    transform: translateY(-2px);
    background: var(--rf-primary, #002050);
    box-shadow: 0 18px 42px rgba(0,32,80,.22);
}
.rff-cookie-accept span {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}
@media (max-width: 640px) {
    .rff-cookie-consent {
        align-items: flex-end;
        padding: 12px;
    }
    .rff-cookie-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px 18px;
        border-radius: 22px;
    }
    .rff-cookie-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    .rff-cookie-panel h2 {
        font-size: 21px;
    }
    .rff-cookie-panel p {
        font-size: 13.5px;
        line-height: 1.62;
    }
    .rff-cookie-actions {
        grid-column: 1;
        margin-top: 2px;
    }
    .rff-cookie-accept {
        width: 100%;
        min-height: 44px;
        padding: 11px 18px;
    }
}
