/* ==========================================================================
   RightFlink — design system (ported 1:1 from the prototype)
   Fonts: Space Grotesk (display) + Instrument Sans (body)
   ========================================================================== */

:root {
	--rf-navy: #0A1024;
	--rf-navy-deep: #080D1F;
	--rf-blue: #2B6BFF;
	--rf-cyan: #22D3EE;
	--rf-cyan-2: #22C3D6;
	--rf-ink: #0B1120;
	--rf-body: #3A465E;
	--rf-muted: #47536F;
	--rf-muted-2: #5A6684;
	--rf-muted-3: #8792AC;
	--rf-light: #F6F8FC;
	--rf-line: #E6EBF4;
	--rf-line-2: #DCE3F0;
	--rf-grad: linear-gradient(120deg, #2B6BFF, #22D3EE);
	--rf-grad-text: linear-gradient(100deg, #7FD8FF, #22D3EE, #7FD8FF);
	--rf-shadow-card: 0 30px 60px -22px rgba(11, 17, 32, .4);
	--rf-max: 1200px;
	--display: 'Space Grotesk', sans-serif;
	--body: 'Instrument Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--body);
	color: var(--rf-ink);
	background: var(--rf-light);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.rf-site { background: var(--rf-light); min-height: 100vh; overflow-x: hidden; }

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes rf-fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes rf-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Entrance reveals (JS toggles .rf-in) --------------------------------------
   Directional variants keep the prototype's staggered motion. */
[data-reveal] {
	opacity: 0;
	transition: opacity .85s cubic-bezier(.16, .84, .44, 1), transform .85s cubic-bezier(.16, .84, .44, 1);
	will-change: opacity, transform;
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].rf-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
	.rf-hero__badge, .rf-hero h1 span, .rf-hero__lead, .rf-hero__actions, .rf-hero__stats { animation: none !important; opacity: 1 !important; }
}

/* ---- Layout helpers ----------------------------------------------------- */
.rf-wrap { max-width: var(--rf-max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.rf-narrow { max-width: 820px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.rf-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rf-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rf-g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grad { background: var(--rf-grad-text); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Buttons ------------------------------------------------------------ */
.rf-btn {
	display: inline-block; font-family: var(--body); font-weight: 700; font-size: 16px;
	padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
	background: var(--rf-grad); color: #04122E;
	box-shadow: 0 12px 34px -8px rgba(34, 211, 238, .67);
	transition: transform .25s ease, box-shadow .25s ease;
}
.rf-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -8px rgba(34, 211, 238, .8); }
.rf-btn--sm { font-size: 14px; font-weight: 600; padding: 11px 20px; box-shadow: none; }
.rf-btn--lg { font-size: 17px; padding: 17px 38px; box-shadow: 0 14px 40px -8px rgba(34, 211, 238, .67); }
.rf-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .28); box-shadow: none; }
.rf-btn--ghost:hover { border-color: rgba(255, 255, 255, .55); box-shadow: none; }
.rf-btn--block { display: block; width: 100%; text-align: center; }
.rf-link { display: inline-flex; align-items: center; gap: 8px; color: var(--rf-blue); font-weight: 600; font-size: 16px; }
.rf-link:hover { gap: 12px; }

/* ---- Header / Nav ------------------------------------------------------- */
.rf-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(10, 16, 36, .85);
	-webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.admin-bar .rf-header { top: 32px; }
.rf-nav { max-width: var(--rf-max); margin: 0 auto; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rf-nav__logo { display: flex; align-items: center; }
.rf-nav__logo img { height: 48px; width: auto; }
.rf-nav__links { display: flex; align-items: center; gap: 30px; }
.rf-nav__links a { color: #AAB4CE; font-size: 15px; font-weight: 500; transition: color .2s ease; }
.rf-nav__links a:hover, .rf-nav__links a.is-active { color: #E7ECF7; }
.rf-nav__links .rf-btn { color: #000; }
.rf-burger { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; align-items: center; justify-content: center; color: #E7ECF7; }
.rf-mobile-menu { display: none; flex-direction: column; padding: 8px 20px 20px; background: rgba(9, 14, 33, .98); border-top: 1px solid rgba(255, 255, 255, .08); }
.rf-mobile-menu.is-open { display: flex; }
.rf-mobile-menu a { color: #C7D0E6; font-size: 16px; font-weight: 500; padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.rf-mobile-menu a.is-active { color: #E7ECF7; }
.rf-mobile-menu .rf-btn { margin-top: 14px; }

/* ---- Hero --------------------------------------------------------------- */
.rf-hero { position: relative; overflow: hidden; background: var(--rf-navy-deep); color: #fff; }
.rf-hero--tall { min-height: 600px; display: flex; align-items: center; }
.rf-hero--home { min-height: 500px; display: flex; align-items: center; }
.rf-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-hero__ov { position: absolute; inset: 0; }
.rf-hero__ov--right { background: linear-gradient(90deg, rgba(8, 13, 31, .25) 0%, rgba(8, 13, 31, .48) 42%, rgba(8, 13, 31, .94) 100%); }
.rf-hero__ov--left { background: linear-gradient(90deg, rgba(8, 13, 31, .95) 0%, rgba(8, 13, 31, .55) 55%, rgba(8, 13, 31, .18) 100%); }
.rf-hero__ov--center { background: radial-gradient(1000px 500px at 50% -10%, rgba(22, 48, 122, .5) 0%, transparent 60%), linear-gradient(180deg, rgba(8, 13, 31, .82) 0%, rgba(8, 13, 31, .9) 100%); }
.rf-hero--gradient { background: radial-gradient(1000px 500px at 50% -20%, #16307A 0%, transparent 60%), linear-gradient(180deg, #0A1024 0%, #0B143A 100%); }
.rf-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .3; }
.rf-hero__inner { position: relative; width: 100%; max-width: var(--rf-max); margin: 0 auto; padding: 64px 28px; }
.rf-hero__inner--end { display: flex; justify-content: flex-end; }
.rf-hero__inner--start { display: flex; justify-content: flex-start; }
.rf-hero__inner--center { text-align: center; padding: 96px 28px; }
.rf-hero__text { max-width: 540px; }
.rf-hero__inner--center .rf-hero__text { max-width: 860px; margin: 0 auto; }
.rf-badge {
	display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px;
	border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px;
	font-size: 13px; letter-spacing: .04em; color: #B7E6EE; background: rgba(255, 255, 255, .06);
	opacity: 0; animation: rf-fadeup .7s ease forwards;
}
.rf-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rf-cyan); box-shadow: 0 0 10px var(--rf-cyan); }
.rf-hero h1 { font-family: var(--display); font-weight: 700; font-size: 56px; line-height: 1.05; letter-spacing: -.02em; margin: 22px 0 0; }
.rf-hero--center h1, .rf-hero__inner--center h1 { margin-left: auto; margin-right: auto; }
.rf-hero h1 .line { display: block; opacity: 0; animation: rf-fadeup .8s ease .1s forwards; }
.rf-hero h1 .line:nth-child(2) { animation-delay: .25s; }
.rf-hero__lead { font-size: 19px; line-height: 1.6; color: #D3DBEF; margin: 24px 0 0; opacity: 0; animation: rf-fadeup .8s ease .4s forwards; }
.rf-hero__inner--center .rf-hero__lead { max-width: 620px; margin-left: auto; margin-right: auto; color: #B9C4E0; }
.rf-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: rf-fadeup .8s ease .55s forwards; }
.rf-hero__inner--center .rf-hero__actions { justify-content: center; }
.rf-hero__stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; opacity: 0; animation: rf-fadeup .8s ease .7s forwards; }
.rf-hero__stats .num { font-family: var(--display); font-size: 30px; font-weight: 700; color: #fff; }
.rf-hero__stats .lbl { color: #9DB0D6; font-size: 13px; }
.rf-hero__stats .sep { width: 1px; background: rgba(255, 255, 255, .16); }

/* ---- Sections ----------------------------------------------------------- */
.rf-section { padding: 100px 0; }
.rf-section--sm { padding: 70px 0; }
.rf-section--dark { background: var(--rf-navy); color: #fff; position: relative; overflow: hidden; }
.rf-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(30px); pointer-events: none; }
.rf-glow--blue { background: radial-gradient(circle, rgba(43, 107, 255, .2), transparent 70%); top: 20%; left: -100px; }
.rf-glow--blue-r { background: radial-gradient(circle, rgba(43, 107, 255, .2), transparent 70%); top: 10%; right: -120px; }
.rf-sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.rf-sec-head--left { text-align: left; margin-left: 0; }
.rf-eyebrow { font-family: var(--display); font-weight: 600; color: var(--rf-blue); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.rf-section--dark .rf-eyebrow { color: var(--rf-cyan); }
.rf-h2 { font-family: var(--display); font-weight: 700; font-size: 42px; line-height: 1.12; letter-spacing: -.02em; color: var(--rf-ink); margin: 14px 0 0; }
.rf-section--dark .rf-h2 { color: #fff; }
.rf-h2--tight { margin-top: 14px; }
.rf-lead { font-size: 17px; line-height: 1.75; color: var(--rf-muted); }
.rf-prose p { font-size: 17px; line-height: 1.75; color: var(--rf-muted); margin: 0 0 18px; }
.rf-prose strong { color: var(--rf-ink); }

/* ---- Intro / media split ------------------------------------------------ */
.rf-media { position: relative; }
.rf-media img { width: 100%; border-radius: 20px; box-shadow: var(--rf-shadow-card); display: block; }
.rf-media__badge {
	position: absolute; background: var(--rf-navy); color: #fff; padding: 16px 22px; border-radius: 14px;
	box-shadow: 0 20px 40px -14px rgba(11, 17, 32, .5);
}
.rf-media__badge--bl { bottom: -24px; left: -24px; padding: 20px 26px; animation: rf-float 6s ease-in-out infinite; }
.rf-media__badge--tr { top: -20px; right: -16px; }
.rf-media__badge--tl { top: -20px; left: -16px; }
.rf-media__badge .num { font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1; }
.rf-media__badge--bl .num { font-size: 40px; }
.rf-media__badge .lbl { color: #9DB0D6; font-size: 12px; letter-spacing: .05em; margin-top: 3px; }

/* ---- Feature / strength cards ------------------------------------------- */
.rf-fcard {
	background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; padding: 30px;
}
.rf-fcard__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--rf-grad); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #04122E; }
.rf-fcard h3 { font-family: var(--display); font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.rf-fcard p { color: #9DB0D6; font-size: 15px; line-height: 1.6; margin: 0; }

/* ---- Value cards (About, light) ----------------------------------------- */
.rf-vcard { background: #fff; border: 1px solid var(--rf-line); border-radius: 18px; padding: 30px; }
.rf-vcard__icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, #EAF1FF, #E3FBFD); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--rf-blue); }
.rf-vcard h3 { font-family: var(--display); font-size: 20px; font-weight: 600; margin: 0 0 8px; color: var(--rf-ink); }
.rf-vcard p { color: var(--rf-muted-2); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---- Industries grid ---------------------------------------------------- */
.rf-industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rf-ind {
	background: #fff; border: 1px solid var(--rf-line); border-radius: 16px; padding: 26px 22px;
	display: flex; flex-direction: column; gap: 16px;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.rf-ind:hover { border-color: var(--rf-blue); box-shadow: 0 18px 40px -18px rgba(43, 107, 255, .4); transform: translateY(-4px); }
.rf-ind__icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, #EAF1FF, #E3FBFD); display: flex; align-items: center; justify-content: center; color: var(--rf-blue); }
.rf-ind__name { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--rf-ink); line-height: 1.25; }
.rf-section--dark .rf-ind { background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)); border-color: rgba(255, 255, 255, .09); }
.rf-section--dark .rf-ind:hover { border-color: var(--rf-cyan); box-shadow: none; }
.rf-section--dark .rf-ind__icon { background: var(--rf-grad); color: #04122E; }
.rf-section--dark .rf-ind__name { color: #fff; }

/* ---- Checklists & pills (services / healthcare) ------------------------- */
.rf-checks { display: flex; flex-direction: column; gap: 14px; }
.rf-check { display: flex; gap: 12px; align-items: flex-start; }
.rf-check__mark { color: var(--rf-cyan-2); margin-top: 2px; }
.rf-check span:last-child { color: var(--rf-muted); font-size: 16px; line-height: 1.5; }
.rf-check strong { color: var(--rf-ink); }
.rf-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.rf-pill { background: #fff; border: 1px solid var(--rf-line); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--rf-ink); }
.rf-kicker { font-family: var(--display); font-weight: 600; color: var(--rf-blue); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.rf-svc-h { font-family: var(--display); font-weight: 700; font-size: 38px; line-height: 1.12; letter-spacing: -.02em; color: var(--rf-ink); margin: 12px 0 22px; }

/* ---- Stats strip (Business Solutions) ----------------------------------- */
.rf-stat { background: #fff; border: 1px solid var(--rf-line); border-radius: 18px; padding: 34px; text-align: center; }
.rf-stat .num { font-family: var(--display); font-size: 48px; font-weight: 700; line-height: 1; background: var(--rf-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rf-stat .lbl { color: var(--rf-muted); font-size: 15px; font-weight: 600; margin-top: 10px; }

/* ---- Marquee (Healthcare) ----------------------------------------------- */
.rf-marquee { background: var(--rf-navy); padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); overflow: hidden; }
.rf-marquee__track { display: flex; width: max-content; animation: rf-marquee 22s linear infinite; }
.rf-marquee__group { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.rf-marquee__group span { font-family: var(--display); font-size: 22px; font-weight: 600; }
.rf-marquee__group .a { color: #fff; }
.rf-marquee__group .b { color: #8FA0C4; }
.rf-marquee__group .d { color: var(--rf-cyan); }

/* ---- CTA band ----------------------------------------------------------- */
.rf-cta { padding: 0 28px 100px; }
.rf-cta__inner {
	max-width: var(--rf-max); margin: 0 auto; position: relative; overflow: hidden; border-radius: 28px;
	background: radial-gradient(900px 400px at 80% -20%, #16307A, transparent 60%), linear-gradient(120deg, #0A1024, #0E1A44);
	padding: 72px 60px; text-align: center;
}
.rf-cta__glow { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(34, 211, 238, .27), transparent 70%); filter: blur(30px); }
.rf-cta h2 { position: relative; font-family: var(--display); font-weight: 700; font-size: 46px; line-height: 1.1; letter-spacing: -.02em; color: #fff; margin: 0 0 16px; }
.rf-cta p { position: relative; color: #B9C4E0; font-size: 18px; margin: 0 auto 32px; max-width: 520px; }
.rf-cta .rf-btn { position: relative; }
.rf-cta--plain .rf-cta__inner { background: none; padding: 0; }
.rf-cta--plain h2 { color: var(--rf-ink); }

/* ---- Footer ------------------------------------------------------------- */
.rf-footer { background: var(--rf-navy-deep); color: #fff; padding: 64px 28px 32px; }
.rf-footer__cols { max-width: var(--rf-max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.rf-footer img { height: 42px; width: auto; }
.rf-footer__tag { color: #8595BC; font-size: 15px; line-height: 1.6; margin: 18px 0 0; max-width: 280px; }
.rf-footer h4 { font-family: var(--display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.rf-footer__links { display: flex; flex-direction: column; gap: 11px; }
.rf-footer__links a { color: #8595BC; font-size: 15px; }
.rf-footer__links a:hover { color: #C7D0E6; }
.rf-footer address { color: #8595BC; font-size: 15px; line-height: 1.7; font-style: normal; }
.rf-footer__bottom { max-width: var(--rf-max); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); color: #66759B; font-size: 14px; }

/* ---- Resources (blog index) --------------------------------------------- */
.rf-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 40px; }
.rf-filter__label { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--rf-muted-3); letter-spacing: .06em; text-transform: uppercase; margin-right: 8px; }
.rf-chip { background: #fff; color: var(--rf-muted); border: 1px solid var(--rf-line); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s ease; }
.rf-chip.is-active { background: var(--rf-grad); color: #04122E; border-color: transparent; }
.rf-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rf-post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--rf-line); border-radius: 20px; overflow: hidden; box-shadow: 0 1px 2px rgba(11, 17, 32, .04); transition: box-shadow .3s ease, transform .3s ease; }
.rf-post-card:hover { box-shadow: 0 26px 50px -24px rgba(11, 17, 32, .35); transform: translateY(-4px); }
.rf-post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--rf-navy); }
.rf-post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rf-post-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.rf-tag { align-self: flex-start; background: #EAF1FF; color: var(--rf-blue); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.rf-post-card h3 { font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--rf-ink); margin: 14px 0 10px; }
.rf-post-card p { color: var(--rf-muted-2); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.rf-post-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.rf-post-card__meta .date { color: var(--rf-muted-3); font-size: 13px; }
.rf-post-card__meta .read { color: var(--rf-blue); font-weight: 600; font-size: 14px; }
.rf-empty { display: none; text-align: center; padding: 60px 0; color: var(--rf-muted-3); font-size: 16px; }
.rf-empty.is-shown { display: block; }

/* ---- Single post -------------------------------------------------------- */
.rf-post-hero { position: relative; overflow: hidden; background: var(--rf-navy-deep); color: #fff; }
.rf-post-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rf-post-hero__ov { position: absolute; inset: 0; background: radial-gradient(900px 450px at 60% -20%, rgba(22, 48, 122, .45), transparent 60%), linear-gradient(180deg, rgba(8, 13, 31, .68) 0%, rgba(8, 13, 31, .9) 100%); }
.rf-post-hero__inner { position: relative; max-width: 820px; margin: 0 auto; padding: 56px 28px 68px; }
.rf-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: #8FA0C4; }
.rf-crumb a { color: #8FA0C4; }
.rf-crumb .cur { color: #C7D0E6; }
.rf-post-cat { display: inline-block; background: rgba(43, 107, 255, .2); border: 1px solid rgba(90, 160, 255, .4); color: #8FC0FF; font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; margin-top: 22px; }
.rf-post-hero h1 { font-family: var(--display); font-weight: 700; font-size: 42px; line-height: 1.14; letter-spacing: -.02em; margin: 18px 0 0; }
.rf-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; color: #9DB0D6; font-size: 14px; }
.rf-post-meta .sep { color: #3E4C73; }
.rf-post-meta .by { color: #C7D0E6; }
.rf-article { max-width: 820px; margin: 0 auto; padding: 48px 28px 40px; }
.rf-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 0; padding-top: 28px; border-top: 1px solid var(--rf-line); }
.rf-post-tags a { background: #EDF1F8; color: var(--rf-muted-2); font-size: 13px; padding: 6px 13px; border-radius: 999px; }
.rf-authorbox { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding: 24px; background: #fff; border: 1px solid var(--rf-line); border-radius: 18px; }
.rf-authorbox__avatar { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; background: var(--rf-grad); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; color: #04122E; font-size: 18px; }
.rf-authorbox .lbl { font-size: 12px; color: var(--rf-muted-3); letter-spacing: .04em; text-transform: uppercase; }
.rf-authorbox .name { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--rf-ink); margin-top: 2px; }
.rf-back { margin-top: 28px; }

/* Rich text body */
.entry-content p { color: var(--rf-body); font-size: 17px; line-height: 1.8; margin: 0 0 20px; }
.entry-content h2 { font-family: var(--display); font-size: 27px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; color: var(--rf-ink); margin: 42px 0 16px; }
.entry-content h3 { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--rf-ink); margin: 30px 0 12px; }
.entry-content ul { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.entry-content ul li { position: relative; padding-left: 26px; color: var(--rf-body); font-size: 17px; line-height: 1.7; }
.entry-content ul li::before { content: "\2726"; position: absolute; left: 0; top: 1px; color: var(--rf-cyan-2); }
.entry-content ol { margin: 0 0 22px; padding-left: 24px; display: flex; flex-direction: column; gap: 12px; color: var(--rf-body); font-size: 17px; line-height: 1.7; }
.entry-content strong { color: var(--rf-ink); }
.entry-content em { color: var(--rf-muted-2); }
.entry-content a { color: var(--rf-blue); text-decoration: underline; }
.entry-content img { border-radius: 14px; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 4px 0 24px; font-size: 15px; }
.entry-content th { text-align: left; background: #EAF1FF; color: var(--rf-ink); font-weight: 600; padding: 12px 14px; border: 1px solid var(--rf-line); }
.entry-content td { padding: 12px 14px; border: 1px solid var(--rf-line); color: var(--rf-body); vertical-align: top; }
.entry-content blockquote { margin: 0 0 22px; padding: 4px 0 4px 20px; border-left: 3px solid var(--rf-blue); color: var(--rf-muted-2); }

/* ---- Contact ------------------------------------------------------------ */
.rf-contact { max-width: 1120px; margin: -56px auto 0; padding: 0 28px 100px; position: relative; z-index: 2; }
.rf-contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.rf-form-card { background: #fff; border: 1px solid var(--rf-line); border-radius: 24px; padding: 40px; box-shadow: 0 40px 80px -40px rgba(11, 17, 32, .35); }
.rf-form-card h2 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -.01em; color: var(--rf-ink); margin: 0 0 26px; }
.rf-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rf-field { display: block; }
.rf-field--full { grid-column: 1 / -1; }
.rf-field > span { display: block; font-size: 13px; font-weight: 600; color: var(--rf-muted); margin-bottom: 7px; }
.rf-input, .rf-select, .rf-textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--rf-line-2); border-radius: 11px; font-size: 15px; color: var(--rf-ink); outline: none; background: #FAFBFE; font-family: inherit; }
.rf-input:focus, .rf-select:focus, .rf-textarea:focus { border-color: var(--rf-blue); }
.rf-textarea { resize: vertical; }
.rf-input::placeholder, .rf-textarea::placeholder { color: #9AA6C2; }
.rf-form-card .rf-btn { margin-top: 22px; border-radius: 12px; }
.rf-form-msg { margin-top: 14px; font-size: 14px; color: var(--rf-muted-2); }
.rf-form-success { display: none; text-align: center; padding: 34px 10px; }
.rf-form-success.is-shown { display: block; }
.rf-form-success__check { width: 64px; height: 64px; border-radius: 50%; background: var(--rf-grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #04122E; }
.rf-form-success h2 { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--rf-ink); margin: 0 0 10px; }
.rf-form-success p { color: var(--rf-muted-2); font-size: 16px; margin: 0; }
.rf-info { display: flex; flex-direction: column; gap: 16px; }
.rf-info__dark { background: var(--rf-navy); color: #fff; border-radius: 24px; padding: 32px; position: relative; overflow: hidden; }
.rf-info__dark .rf-glow-sm { position: absolute; top: -60px; right: -40px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(34, 211, 238, .2), transparent 70%); filter: blur(20px); }
.rf-info__dark h3 { font-family: var(--display); font-weight: 600; font-size: 19px; margin: 0 0 22px; position: relative; }
.rf-info__rows { display: flex; flex-direction: column; gap: 20px; position: relative; }
.rf-info__row { display: flex; gap: 14px; align-items: flex-start; }
.rf-info__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; color: var(--rf-cyan); }
.rf-info__row .k { font-size: 13px; color: #8FA0C4; margin-bottom: 3px; }
.rf-info__row .v { font-size: 15px; line-height: 1.5; }
.rf-info__light { background: #fff; border: 1px solid var(--rf-line); border-radius: 24px; padding: 32px; }
.rf-info__light h3 { font-family: var(--display); font-weight: 600; font-size: 19px; margin: 0 0 10px; color: var(--rf-ink); }
.rf-why { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.rf-why div { display: flex; gap: 10px; align-items: center; color: var(--rf-muted); font-size: 15px; }
.rf-why .mark { color: var(--rf-cyan-2); }

/* ---- Archive / generic -------------------------------------------------- */
.rf-page-body { max-width: 820px; margin: 0 auto; padding: 56px 28px 90px; }
.rf-page-body h1 { font-family: var(--display); font-weight: 700; font-size: 40px; letter-spacing: -.02em; color: var(--rf-ink); }
.rf-pagination { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.rf-pagination a, .rf-pagination span { padding: 9px 15px; border-radius: 10px; border: 1px solid var(--rf-line); color: var(--rf-muted); font-weight: 600; }
.rf-pagination .current { background: var(--rf-grad); color: #04122E; border-color: transparent; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
	.rf-nav__links { display: none; }
	.rf-burger { display: flex; }
	.admin-bar .rf-header { top: 46px; }
}
@media (max-width: 900px) {
	.rf-g2 { grid-template-columns: 1fr; gap: 40px; }
	.rf-g3 { grid-template-columns: 1fr 1fr; }
	.rf-g4 { grid-template-columns: 1fr 1fr; }
	.rf-industries { grid-template-columns: 1fr 1fr; }
	.rf-posts { grid-template-columns: 1fr 1fr; }
	.rf-footer__cols { grid-template-columns: 1fr 1fr; }
	.rf-contact__grid { grid-template-columns: 1fr; }
	.rf-hero__inner--end, .rf-hero__inner--start { justify-content: center; }
	.rf-hero__text { max-width: 620px; }
	.rf-hero__ov--left, .rf-hero__ov--right { background: rgba(8, 13, 31, .8); }
	.rf-hero h1 { font-size: 40px; }
	.rf-order-img { order: 0 !important; }
	.rf-order-txt { order: 0 !important; }
}
@media (max-width: 620px) {
	.rf-g3 { grid-template-columns: 1fr; }
	.rf-posts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.rf-g4 { grid-template-columns: 1fr; }
	.rf-industries { grid-template-columns: 1fr; }
	.rf-footer__cols { grid-template-columns: 1fr; }
	.rf-fields { grid-template-columns: 1fr; }
	.rf-hero h1 { font-size: 32px; }
	.rf-cta h2 { font-size: 32px; }
	.rf-cta__inner { padding: 48px 28px; }
	.rf-media__badge--bl { left: 0; }
}
