/* ==========================================================================
   Reveloft — Main Stylesheet  (v1.1.0)
   ----------------------------------------------------------------------------
   ARCHITECTURE
   1.  Tokens               — :root variables + dark mode overrides
   2.  Base / reset
   3.  Typography
   4.  Accessibility
   5.  Layout primitives
   6.  Buttons
   7.  Header + nav + submenu/mega + drawer
   8.  Hero
   9.  Trust strip
   10. Services grid
   11. About
   12. Process
   13. Portfolio
   14. Case studies
   15. Testimonials
   16. Team
   17. Pricing
   18. FAQ
   19. CTA card
   20. Footer
   21. Scroll progress, back-to-top, WhatsApp, cookies, preloader
   22. Page hero, breadcrumbs
   23. Single post / Prose / Blog cards
   24. Forms
   25. 404
   26. Comments
   27. Misc
   28. Reveal animations
   29. Reduced motion
   30. Print
   ========================================================================== */

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
	--rv-primary: #5B21FF;
	--rv-primary-600: #4A14E0;
	--rv-accent: #00E5FF;
	--rv-accent-600: #00B6CC;
	--rv-dark: #0B0F1F;

	--rv-bg: #FFFFFF;
	--rv-text: #1F2433;
	--rv-muted: #6B7280;
	--rv-light: #F4F5FB;
	--rv-line: rgba(15, 18, 38, 0.08);
	--rv-card-bg: #FFFFFF;

	--rv-grad: linear-gradient(135deg, var(--rv-primary) 0%, var(--rv-accent) 100%);
	--rv-grad-soft: linear-gradient(135deg, rgba(91,33,255,.12), rgba(0,229,255,.12));

	--rv-font-head: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--rv-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

	--rv-r-sm: 10px;
	--rv-r-md: 16px;
	--rv-r-lg: 22px;
	--rv-r-xl: 28px;
	--rv-r-pill: 999px;

	--rv-shadow-sm: 0 1px 2px rgba(15,18,38,.04), 0 2px 8px rgba(15,18,38,.04);
	--rv-shadow-md: 0 8px 24px rgba(15,18,38,.08), 0 1px 4px rgba(15,18,38,.04);
	--rv-shadow-lg: 0 24px 60px rgba(15,18,38,.12);
	--rv-shadow-glow: 0 20px 60px -20px rgba(91,33,255,.55);

	--rv-container: 1240px;
	--rv-section-y: clamp(60px, 8vw, 120px);

	--rv-ease: cubic-bezier(.2,.7,.2,1);
	--rv-dur: .35s;

	color-scheme: light;
}

/* Dark mode — html-level selector beats anything customizer outputs in :root */
html[data-rv-theme="dark"] {
	--rv-bg: #0B0F1F;
	--rv-text: #E6E8F2;
	--rv-muted: #93A0B8;
	--rv-light: #131934;
	--rv-line: rgba(255,255,255,.08);
	--rv-card-bg: #131934;
	--rv-shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.2);
	--rv-shadow-md: 0 8px 24px rgba(0,0,0,.4), 0 1px 4px rgba(0,0,0,.2);
	--rv-shadow-lg: 0 24px 60px rgba(0,0,0,.5);
	color-scheme: dark;
}

/* ==========================================================================
   2. Base / reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
	font-family: var(--rv-font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--rv-text);
	background: var(--rv-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	transition: background-color var(--rv-dur) var(--rv-ease), color var(--rv-dur) var(--rv-ease);
}
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: var(--rv-primary); text-decoration: none; transition: color var(--rv-dur) var(--rv-ease); }
a:hover { color: var(--rv-primary-600); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--rv-font-head);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 .6em;
	color: var(--rv-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

::selection { background: var(--rv-primary); color: #fff; }

.rv-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--rv-font-head);
	font-size: 13px; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--rv-primary);
	margin: 0 0 14px;
}
.rv-eyebrow__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--rv-primary);
	box-shadow: 0 0 0 4px rgba(91,33,255,.18);
	animation: rv-pulse 2.4s var(--rv-ease) infinite;
}
.rv-eyebrow--light { color: var(--rv-accent); }
.rv-eyebrow--light .rv-eyebrow__dot {
	background: var(--rv-accent);
	box-shadow: 0 0 0 4px rgba(0,229,255,.2);
}
@keyframes rv-pulse { 0%,100% { opacity: 1 } 50% { opacity: .55 } }

.rv-grad-text {
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	display: inline-block;
}

/* ==========================================================================
   4. Accessibility
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus {
	left: 16px; top: 16px;
	background: var(--rv-primary); color: #fff;
	padding: 10px 16px; border-radius: var(--rv-r-sm);
	z-index: 9999;
}
.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
:focus-visible {
	outline: 2px solid var(--rv-primary);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ==========================================================================
   5. Layout primitives
   ========================================================================== */
.rv-container {
	width: 100%;
	max-width: var(--rv-container);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 32px);
}
.rv-section { padding-block: var(--rv-section-y); }
.rv-section--dark { background: var(--rv-dark); color: #E6E8F2; }
.rv-section--dark h1, .rv-section--dark h2,
.rv-section--dark h3, .rv-section--dark h4 { color: #fff; }

.rv-section__head {
	max-width: 720px;
	margin: 0 auto clamp(40px, 5vw, 64px);
	text-align: center;
}
.rv-section__head--row {
	display: flex; align-items: end; justify-content: space-between; gap: 32px;
	max-width: none;
	text-align: left;
	flex-wrap: wrap;
}
.rv-section__title { font-size: clamp(1.9rem, 3.6vw, 3rem); margin: .25em 0 .35em; }
.rv-section__title--light { color: #fff; }
.rv-section__sub { color: var(--rv-muted); font-size: 1.1rem; }

.rv-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 5vw, 64px);
	align-items: start;
}
@media (max-width: 900px) { .rv-grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.rv-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 22px;
	font-family: var(--rv-font-head);
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--rv-r-pill);
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease),
				background-color var(--rv-dur) var(--rv-ease),
				color var(--rv-dur) var(--rv-ease);
	white-space: nowrap;
	cursor: pointer;
	border: 0;
	text-decoration: none;
}
.rv-btn--lg { padding: 16px 28px; font-size: 16px; }
.rv-btn--sm { padding: 8px 14px; font-size: 13px; }
.rv-btn--full { width: 100%; justify-content: center; }
.rv-btn--primary {
	color: #fff;
	background: var(--rv-grad);
	box-shadow: var(--rv-shadow-glow);
}
.rv-btn--primary:hover {
	transform: translateY(-2px);
	color: #fff;
	box-shadow: 0 28px 70px -18px rgba(91,33,255,.7);
}
.rv-btn--primary svg { transition: transform var(--rv-dur) var(--rv-ease); }
.rv-btn--primary:hover svg { transform: translateX(3px); }

.rv-btn--ghost {
	color: var(--rv-text);
	background: transparent;
	border: 1px solid var(--rv-line);
}
.rv-btn--ghost:hover {
	background: var(--rv-light);
	transform: translateY(-2px);
	color: var(--rv-text);
}
.rv-section--dark .rv-btn--ghost { color: #fff; border-color: rgba(255,255,255,.18); }
.rv-section--dark .rv-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

.rv-iconbtn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--rv-r-pill);
	color: var(--rv-text);
	background: var(--rv-light);
	transition: all var(--rv-dur) var(--rv-ease);
	flex-shrink: 0;
}
.rv-iconbtn:hover { background: var(--rv-primary); color: #fff; transform: translateY(-2px); }

/* Theme toggle: moon in light mode, sun in dark mode (only one shown) */
.rv-theme-toggle svg + svg { display: none; }
html[data-rv-theme="dark"] .rv-theme-toggle svg:first-of-type { display: none; }
html[data-rv-theme="dark"] .rv-theme-toggle svg + svg { display: inline-block; }

/* ==========================================================================
   7. Header + nav + submenu/mega + drawer
   ========================================================================== */
.rv-header {
	position: sticky; top: 0; z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: color-mix(in srgb, var(--rv-bg) 80%, transparent);
	border-bottom: 1px solid transparent;
	transition: background-color var(--rv-dur) var(--rv-ease),
				border-color var(--rv-dur) var(--rv-ease);
}
.rv-header.is-stuck {
	background: color-mix(in srgb, var(--rv-bg) 92%, transparent);
	border-bottom-color: var(--rv-line);
}
.rv-header__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	max-width: var(--rv-container);
	margin: 0 auto;
	padding: 14px clamp(20px, 4vw, 32px);
}
.rv-header__brand .rv-logo-text {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--rv-font-head);
	font-weight: 700; font-size: 19px;
	color: var(--rv-text);
	letter-spacing: -.02em;
}
.rv-header__brand .rv-logo-mark {
	width: 22px; height: 22px;
	border-radius: 7px;
	background: var(--rv-grad);
	box-shadow: var(--rv-shadow-glow);
	flex-shrink: 0;
}
.rv-header__brand img { max-height: 40px; width: auto; }
.rv-header__actions { display: flex; align-items: center; gap: 10px; }

/* Top-level nav */
.rv-nav__menu {
	display: flex; gap: 4px;
	list-style: none; margin: 0; padding: 0;
}
.rv-nav__menu > li { position: relative; }
.rv-nav__menu > li > a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 14px;
	color: var(--rv-text);
	font-weight: 500; font-size: 15px;
	border-radius: var(--rv-r-pill);
	transition: background-color var(--rv-dur) var(--rv-ease);
	text-decoration: none;
}
.rv-nav__menu > li > a:hover,
.rv-nav__menu > li.current-menu-item > a,
.rv-nav__menu > li.current-menu-ancestor > a {
	background: var(--rv-light);
}

/* Caret */
.rv-nav__menu > li.menu-item-has-children > a::after {
	content: '';
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .55;
	transition: transform var(--rv-dur) var(--rv-ease), opacity var(--rv-dur) var(--rv-ease);
	margin-left: 2px;
}
.rv-nav__menu > li.menu-item-has-children:hover > a::after,
.rv-nav__menu > li.menu-item-has-children:focus-within > a::after,
.rv-nav__menu > li.menu-item-has-children.is-open > a::after {
	transform: rotate(225deg);
	opacity: 1;
}

/* Hover bridge */
.rv-nav__menu > li.menu-item-has-children::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	top: 100%;
	height: 12px;
	pointer-events: none;
}
.rv-nav__menu > li.menu-item-has-children:hover::after,
.rv-nav__menu > li.menu-item-has-children:focus-within::after { pointer-events: auto; }

/* Submenu */
.rv-nav__menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 240px;
	margin: 0; padding: 10px;
	list-style: none;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-md);
	box-shadow: var(--rv-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--rv-dur) var(--rv-ease),
				transform var(--rv-dur) var(--rv-ease),
				visibility var(--rv-dur) var(--rv-ease);
	z-index: 50;
}
.rv-nav__menu .sub-menu li { list-style: none; }
.rv-nav__menu .sub-menu li > a {
	display: block;
	padding: 10px 14px;
	color: var(--rv-text);
	font-size: 14px; font-weight: 500;
	border-radius: var(--rv-r-sm);
	transition: background-color var(--rv-dur) var(--rv-ease), color var(--rv-dur) var(--rv-ease);
	white-space: nowrap;
	text-decoration: none;
}
.rv-nav__menu .sub-menu li > a:hover,
.rv-nav__menu .sub-menu li.current-menu-item > a {
	background: var(--rv-light);
	color: var(--rv-primary);
}
.rv-nav__menu > li:hover > .sub-menu,
.rv-nav__menu > li:focus-within > .sub-menu,
.rv-nav__menu > li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Mega menu */
.rv-nav__menu > li.is-mega { position: static; }
.rv-nav__menu > li.is-mega > .sub-menu {
	left: 50%;
	transform: translate(-50%, 8px);
	width: min(1100px, calc(100vw - 40px));
	max-width: var(--rv-container);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 4px 24px;
	padding: 24px;
}
.rv-nav__menu > li.is-mega:hover > .sub-menu,
.rv-nav__menu > li.is-mega:focus-within > .sub-menu,
.rv-nav__menu > li.is-mega.is-open > .sub-menu {
	transform: translate(-50%, 0);
}
.rv-nav__menu > li.is-mega > .sub-menu > li > a {
	font-family: var(--rv-font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--rv-muted);
	padding: 8px 10px;
	margin-bottom: 4px;
	pointer-events: none;
	background: transparent;
}
.rv-nav__menu > li.is-mega > .sub-menu > li > a:hover {
	background: transparent;
	color: var(--rv-muted);
}
.rv-nav__menu > li.is-mega .sub-menu .sub-menu {
	position: static;
	opacity: 1; visibility: visible; transform: none;
	background: transparent;
	border: 0; box-shadow: none;
	padding: 0; margin: 0;
	min-width: 0; width: auto;
	display: flex; flex-direction: column; gap: 2px;
}
.rv-nav__menu > li.is-mega .sub-menu .sub-menu li > a {
	font-family: var(--rv-font-body);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	color: var(--rv-text);
	padding: 8px 10px;
	pointer-events: auto;
}
.rv-nav__menu > li.is-mega .sub-menu .sub-menu li > a:hover {
	background: var(--rv-light);
	color: var(--rv-primary);
}
.rv-nav__menu > li:not(.is-mega) .sub-menu .sub-menu {
	top: -10px;
	left: 100%;
	margin-left: 4px;
}

/* Burger only on mobile */
.rv-burger { display: none; }
@media (max-width: 980px) {
	.rv-nav { display: none; }
	.rv-header__cta { display: none; }
	.rv-burger { display: inline-flex; }
}

/* Mobile drawer */
.rv-drawer {
	position: fixed; inset: 0;
	background: var(--rv-bg);
	z-index: 100;
	transform: translateX(100%);
	transition: transform .4s var(--rv-ease);
	display: flex; flex-direction: column;
	padding: 20px;
	overflow-y: auto;
}
.rv-drawer.is-open { transform: translateX(0); }
.rv-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 24px;
}
.rv-drawer__menu {
	list-style: none; margin: 0; padding: 0;
	flex: 1;
}
.rv-drawer__menu li { border-bottom: 1px solid var(--rv-line); }
.rv-drawer__menu li li { border-bottom: 0; }
.rv-drawer__menu li > a {
	display: flex;
	align-items: center; justify-content: space-between;
	padding: 14px 8px;
	font-family: var(--rv-font-head);
	font-size: 18px; font-weight: 600;
	color: var(--rv-text);
	text-decoration: none;
}
.rv-drawer__menu li.menu-item-has-children > a::after {
	content: '';
	width: 8px; height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: .55;
	transition: transform var(--rv-dur) var(--rv-ease);
	margin-left: 12px;
	flex-shrink: 0;
}
.rv-drawer__menu li.menu-item-has-children.is-open > a::after { transform: rotate(-135deg); }
.rv-drawer__menu .sub-menu {
	list-style: none; margin: 0;
	padding: 0 0 0 16px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s var(--rv-ease);
}
.rv-drawer__menu li.is-open > .sub-menu { max-height: 1500px; }
.rv-drawer__menu .sub-menu li > a {
	font-family: var(--rv-font-body);
	font-size: 15px; font-weight: 500;
	color: var(--rv-muted);
	padding: 10px 8px;
}
.rv-drawer__menu .sub-menu li > a:hover { color: var(--rv-primary); }
.rv-drawer__cta { padding-top: 16px; }

/* ==========================================================================
   8. Hero
   ========================================================================== */
.rv-hero {
	position: relative;
	padding-top: clamp(80px, 12vw, 140px);
	padding-bottom: clamp(80px, 12vw, 140px);
	overflow: hidden;
	isolation: isolate;
}
.rv-hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.rv-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .55;
}
.rv-blob--1 { width: 520px; height: 520px; top: -120px; left: -180px; background: var(--rv-primary); }
.rv-blob--2 { width: 480px; height: 480px; right: -160px; top: 80px; background: var(--rv-accent); }
.rv-blob--3 { width: 360px; height: 360px; bottom: -120px; left: 30%; background: #FF52A8; opacity: .25; }
html[data-rv-theme="dark"] .rv-blob { opacity: .4; }
html[data-rv-theme="dark"] .rv-blob--3 { opacity: .2; }

.rv-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, var(--rv-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--rv-line) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
	opacity: .6;
}

.rv-hero__inner { position: relative; text-align: center; max-width: 980px; margin: 0 auto; }
.rv-hero__title { margin-bottom: .4em; }
.rv-hero__sub {
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	color: var(--rv-muted);
	max-width: 720px; margin: 0 auto 32px;
}
.rv-hero__cta {
	display: flex; flex-wrap: wrap;
	justify-content: center; gap: 12px;
	margin-bottom: 64px;
}

.rv-hero__floating { position: relative; height: 0; }
.rv-float-card {
	position: absolute;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-md);
	padding: 14px 16px;
	box-shadow: var(--rv-shadow-md);
	display: flex; flex-direction: column; gap: 4px;
	font-size: 13px;
	min-width: 160px;
	color: var(--rv-text);
	animation: rv-float 6s var(--rv-ease) infinite;
}
.rv-float-card--1 { left: -20px;  top: -180px; animation-delay: 0s; }
.rv-float-card--2 { right: -10px; top: -240px; animation-delay: 1s; }
.rv-float-card--3 { left: 50%;    top: -100px; animation-delay: 2s; }
.rv-float-card__row { display: flex; align-items: center; gap: 6px; }
.rv-float-card__metric { font-family: var(--rv-font-head); font-size: 22px; font-weight: 700; }
.rv-float-card__label { color: var(--rv-muted); font-size: 12px; }
.rv-stars { color: #f5b400; font-size: 14px; letter-spacing: 2px; }
.rv-dot { color: var(--rv-muted); }
.rv-dot--green {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #22C55E;
	box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

@keyframes rv-float {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-10px); }
}
@media (max-width: 720px) {
	.rv-hero__floating { display: none; }
}

.rv-hero__scroll {
	position: absolute; bottom: 24px; left: 50%;
	transform: translateX(-50%);
	width: 24px; height: 40px;
	border: 2px solid var(--rv-line);
	border-radius: 14px;
}
.rv-hero__scroll span {
	display: block; width: 4px; height: 8px;
	background: var(--rv-primary);
	border-radius: 2px;
	margin: 6px auto;
	animation: rv-scroll 1.6s var(--rv-ease) infinite;
}
@keyframes rv-scroll {
	0%   { transform: translateY(0);  opacity: 1 }
	100% { transform: translateY(14px); opacity: 0 }
}

/* ==========================================================================
   9. Trust strip
   ========================================================================== */
.rv-trust {
	padding: 40px 0;
	border-block: 1px solid var(--rv-line);
	background: var(--rv-bg);
}
.rv-trust__title {
	text-align: center;
	color: var(--rv-muted);
	font-size: 14px;
	margin: 0 0 18px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.rv-trust__marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.rv-trust__track {
	display: flex; gap: 56px;
	width: max-content;
	animation: rv-marquee 30s linear infinite;
	align-items: center;
}
.rv-trust__logo {
	font-family: var(--rv-font-head);
	font-weight: 700; font-size: 22px;
	color: var(--rv-muted);
	white-space: nowrap;
	letter-spacing: -.02em;
	opacity: .8;
	transition: color var(--rv-dur) var(--rv-ease), opacity var(--rv-dur) var(--rv-ease);
}
.rv-trust__logo:hover { color: var(--rv-text); opacity: 1; }
@keyframes rv-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ==========================================================================
   10. Services grid
   ========================================================================== */
.rv-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
@media (max-width: 1100px) { .rv-services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .rv-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .rv-services__grid { grid-template-columns: 1fr; } }

.rv-svc-card {
	display: block;
	padding: 28px 24px;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-lg);
	color: var(--rv-text);
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease),
				border-color var(--rv-dur) var(--rv-ease);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	text-decoration: none;
}
.rv-svc-card::before {
	content: '';
	position: absolute; inset: 0; z-index: -1;
	background: var(--rv-grad-soft);
	opacity: 0;
	transition: opacity var(--rv-dur) var(--rv-ease);
}
.rv-svc-card:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: var(--rv-shadow-md);
	color: var(--rv-text);
}
.rv-svc-card:hover::before { opacity: 1; }
.rv-svc-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--rv-grad);
	color: #fff; font-size: 22px;
	margin-bottom: 18px;
	box-shadow: var(--rv-shadow-glow);
}
.rv-svc-card__title { font-size: 1.15rem; margin: 0 0 8px; }
.rv-svc-card__desc { color: var(--rv-muted); font-size: 14px; margin-bottom: 18px; }
.rv-svc-card__more {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--rv-font-head);
	font-size: 14px; font-weight: 600;
	color: var(--rv-primary);
}
.rv-svc-card__more svg { transition: transform var(--rv-dur) var(--rv-ease); }
.rv-svc-card:hover .rv-svc-card__more svg { transform: translateX(4px); }

/* ==========================================================================
   11. About
   ========================================================================== */
.rv-about__grid { align-items: center; }
.rv-about__media-frame {
	position: relative;
	border-radius: var(--rv-r-xl);
	background: var(--rv-grad);
	padding: 40px;
	min-height: 320px;
	overflow: hidden;
	isolation: isolate;
}
.rv-about__media-blur {
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(255,255,255,.25), transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(255,255,255,.15), transparent 50%);
	pointer-events: none;
}
.rv-about__media-card {
	position: relative;
	background: rgba(255,255,255,.92);
	color: #1F2433;
	backdrop-filter: blur(10px);
	border-radius: var(--rv-r-md);
	padding: 22px;
	max-width: 360px;
	box-shadow: var(--rv-shadow-lg);
}
.rv-about__media-card h3 { color: #1F2433; }
.rv-about__media-row {
	display: flex; align-items: center; gap: 8px;
	color: #6B7280; margin-bottom: 8px;
}

.rv-stats {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin: 28px 0;
}
@media (max-width: 700px) { .rv-stats { grid-template-columns: repeat(2, 1fr); } }
.rv-stat__num {
	display: block;
	font-family: var(--rv-font-head); font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.rv-stat__lbl { display: block; color: var(--rv-muted); font-size: 14px; }

/* ==========================================================================
   12. Process
   ========================================================================== */
.rv-process__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .rv-process__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rv-process__list { grid-template-columns: 1fr; } }
.rv-process__item {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--rv-r-lg);
	padding: 24px;
}
.rv-process__num {
	display: inline-block;
	font-family: var(--rv-font-head); font-weight: 700;
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	font-size: 18px; margin-bottom: 10px;
}
.rv-process__title { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.rv-process__desc { color: rgba(230,232,242,.72); font-size: 14px; margin: 0; }

/* ==========================================================================
   13. Portfolio
   ========================================================================== */
.rv-pf-filters {
	display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
	margin-bottom: 32px;
}
.rv-pf-filters button {
	padding: 8px 16px;
	border-radius: var(--rv-r-pill);
	background: var(--rv-light);
	color: var(--rv-text); font-size: 14px; font-weight: 500;
	transition: all var(--rv-dur) var(--rv-ease);
}
.rv-pf-filters button:hover { background: var(--rv-line); }
.rv-pf-filters button.is-active {
	background: var(--rv-grad);
	color: #fff;
	box-shadow: var(--rv-shadow-glow);
}

.rv-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	transition: opacity var(--rv-dur) var(--rv-ease);
}
@media (max-width: 1000px) { .rv-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .rv-portfolio-grid { grid-template-columns: 1fr; } }

.rv-pf-card {
	background: var(--rv-card-bg);
	border-radius: var(--rv-r-lg);
	overflow: hidden;
	isolation: isolate;
	border: 1px solid var(--rv-line);
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-pf-card:hover { transform: translateY(-6px); box-shadow: var(--rv-shadow-lg); }
.rv-pf-card__link {
	display: block; color: var(--rv-text);
	text-decoration: none;
}
.rv-pf-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--rv-light);
	overflow: hidden;
}
.rv-pf-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .6s var(--rv-ease);
}
.rv-pf-card:hover .rv-pf-card__media img { transform: scale(1.05); }
.rv-pf-card__media--demo,
.rv-pf-card__placeholder {
	position: absolute; inset: 0;
	background:
		linear-gradient(135deg, rgba(91,33,255,.85), rgba(0,229,255,.85)),
		repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px);
	background-blend-mode: overlay;
}
.rv-pf-card__media--demo { filter: hue-rotate(calc(var(--i, 0) * 35deg)); }
.rv-pf-card__view {
	position: absolute; right: 16px; top: 16px;
	width: 40px; height: 40px;
	background: rgba(255,255,255,.9);
	border-radius: 50%;
	display: grid; place-items: center;
	color: var(--rv-primary);
	transform: translateY(8px);
	opacity: 0;
	transition: all var(--rv-dur) var(--rv-ease);
}
.rv-pf-card:hover .rv-pf-card__view { transform: translateY(0); opacity: 1; }
.rv-pf-card__body { padding: 20px; }
.rv-pf-card__title { font-size: 1.1rem; margin-bottom: 4px; }
.rv-pf-card__cat { font-size: 13px; color: var(--rv-muted); margin: 0; }

.rv-pf-loadmore-wrap { text-align: center; margin-top: 36px; }

/* ==========================================================================
   14. Case studies
   ========================================================================== */
.rv-cases__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
@media (max-width: 900px) { .rv-cases__grid { grid-template-columns: 1fr; } }
.rv-case-card {
	display: block;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-xl);
	overflow: hidden;
	color: var(--rv-text);
	text-decoration: none;
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-case-card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-lg); color: var(--rv-text); }
.rv-case-card__media { aspect-ratio: 16 / 9; background: var(--rv-light); }
.rv-case-card__media img { width: 100%; height: 100%; object-fit: cover; }
.rv-case-card__body { padding: 24px; }
.rv-case-card__body small { color: var(--rv-muted); }
.rv-case-card__kpis {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 14px; margin-top: 16px;
}
.rv-case-card__kpis strong {
	display: block;
	font-family: var(--rv-font-head);
	font-size: 1.4rem;
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.rv-case-card__kpis span { color: var(--rv-muted); font-size: 12px; }

/* ==========================================================================
   15. Testimonials
   ========================================================================== */
.rv-tm__slider { position: relative; }
.rv-tm__track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 1000px) { .rv-tm__track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
	.rv-tm__track {
		grid-auto-flow: column;
		grid-auto-columns: 85%;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.rv-tm__track::-webkit-scrollbar { display: none; }
	.rv-tm__card { scroll-snap-align: start; }
}
.rv-tm__card {
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-lg);
	padding: 26px;
	box-shadow: var(--rv-shadow-sm);
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-tm__card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-md); }
.rv-tm__rating { display: flex; gap: 2px; color: #f5b400; margin-bottom: 14px; }
.rv-tm__quote {
	font-family: var(--rv-font-head);
	font-weight: 500;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--rv-text);
	margin: 0 0 22px;
}
.rv-tm__person { display: flex; align-items: center; gap: 12px; }
.rv-tm__person img {
	width: 44px; height: 44px;
	border-radius: 50%; object-fit: cover;
}
.rv-tm__avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--rv-grad);
	color: #fff;
	display: grid; place-items: center;
	font-weight: 700;
	flex-shrink: 0;
}
.rv-tm__person small { color: var(--rv-muted); display: block; }
.rv-tm__nav { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }

/* ==========================================================================
   16. Team
   ========================================================================== */
.rv-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
@media (max-width: 1000px) { .rv-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .rv-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .rv-team-grid { grid-template-columns: 1fr; } }

.rv-team-card {
	background: var(--rv-light);
	border-radius: var(--rv-r-lg);
	overflow: hidden;
	transition: transform var(--rv-dur) var(--rv-ease);
}
.rv-team-card:hover { transform: translateY(-4px); }
.rv-team-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.rv-team-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .6s var(--rv-ease);
}
.rv-team-card:hover .rv-team-card__media img { transform: scale(1.05); }
.rv-team-card__initial {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	background: var(--rv-grad);
	color: #fff;
	font-family: var(--rv-font-head);
	font-weight: 700; font-size: 4rem;
}
.rv-team-card__socials {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(transparent, rgba(0,0,0,.7));
	padding: 16px;
	display: flex; gap: 8px;
	transform: translateY(100%);
	opacity: 0;
	transition: all var(--rv-dur) var(--rv-ease);
}
.rv-team-card:hover .rv-team-card__socials,
.rv-team-card:focus-within .rv-team-card__socials {
	transform: translateY(0); opacity: 1;
}
.rv-team-card__socials a {
	display: grid; place-items: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	color: #1F2433;
}
.rv-team-card__body { padding: 18px; }
.rv-team-card__name { margin: 0 0 4px; font-size: 1.05rem; }
.rv-team-card__role { margin: 0; color: var(--rv-muted); font-size: 14px; }

/* ==========================================================================
   17. Pricing
   ========================================================================== */
.rv-pricing__toggle {
	display: flex;
	max-width: max-content;
	margin: 0 auto 32px;
	gap: 4px;
	background: var(--rv-light);
	border-radius: var(--rv-r-pill);
	padding: 4px;
}
.rv-pricing__toggle button {
	padding: 10px 22px;
	border-radius: var(--rv-r-pill);
	font-weight: 600; font-size: 14px;
	color: var(--rv-text);
	transition: all var(--rv-dur) var(--rv-ease);
	display: inline-flex; align-items: center; gap: 6px;
}
.rv-pricing__toggle button.is-active {
	background: var(--rv-grad);
	color: #fff;
	box-shadow: var(--rv-shadow-glow);
}
.rv-chip {
	display: inline-block;
	padding: 2px 8px;
	border-radius: var(--rv-r-pill);
	background: var(--rv-light);
	font-size: 11px; font-weight: 600;
	color: var(--rv-text);
}
.rv-chip--accent { background: var(--rv-accent); color: var(--rv-dark); }

.rv-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 900px) { .rv-pricing__grid { grid-template-columns: 1fr; } }

.rv-plan {
	position: relative;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-xl);
	padding: 30px;
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-plan:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-md); }
.rv-plan.is-featured {
	background:
		linear-gradient(180deg, var(--rv-card-bg), var(--rv-card-bg)) padding-box,
		var(--rv-grad) border-box;
	border: 2px solid transparent;
	box-shadow: var(--rv-shadow-glow);
}
.rv-plan__badge {
	position: absolute; top: -14px; left: 50%;
	transform: translateX(-50%);
	background: var(--rv-grad);
	color: #fff;
	padding: 6px 14px;
	border-radius: var(--rv-r-pill);
	font-size: 12px; font-weight: 600;
}
.rv-plan__name { font-size: 1.25rem; margin-bottom: 4px; }
.rv-plan__tag { color: var(--rv-muted); margin-bottom: 22px; font-size: 14px; }
.rv-plan__price {
	font-family: var(--rv-font-head); font-weight: 700;
	font-size: clamp(2rem, 4vw, 2.6rem);
	margin-bottom: 22px;
	color: var(--rv-text);
}
.rv-plan__per {
	font-size: 1rem; font-weight: 500;
	color: var(--rv-muted);
}
.rv-plan__features {
	list-style: none; margin: 0 0 24px; padding: 0;
	display: flex; flex-direction: column; gap: 12px;
}
.rv-plan__features li {
	display: flex; gap: 10px;
	align-items: flex-start;
	font-size: 14px;
}
.rv-plan__features li svg {
	color: var(--rv-primary);
	flex-shrink: 0;
	margin-top: 3px;
}

/* ==========================================================================
   18. FAQ / Accordion
   ========================================================================== */
.rv-faq__grid { align-items: start; }
.rv-accordion { display: flex; flex-direction: column; gap: 10px; }
.rv-accordion__item {
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-md);
	overflow: hidden;
	transition: border-color var(--rv-dur) var(--rv-ease);
}
.rv-accordion__item[open] { border-color: var(--rv-primary); }
.rv-accordion__head {
	display: flex;
	align-items: center; justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	cursor: pointer;
	list-style: none;
	font-family: var(--rv-font-head);
	font-weight: 600;
	color: var(--rv-text);
}
.rv-accordion__head::-webkit-details-marker { display: none; }
.rv-accordion__icon {
	position: relative;
	width: 14px; height: 14px;
	flex-shrink: 0;
}
.rv-accordion__icon::before,
.rv-accordion__icon::after {
	content: '';
	position: absolute;
	background: var(--rv-text);
	transition: transform var(--rv-dur) var(--rv-ease);
}
.rv-accordion__icon::before { top: 6px; left: 0; right: 0; height: 2px; }
.rv-accordion__icon::after  { left: 6px; top: 0; bottom: 0; width: 2px; }
.rv-accordion__item[open] .rv-accordion__icon::after { transform: scaleY(0); }
.rv-accordion__body {
	padding: 0 22px 22px;
	color: var(--rv-muted);
}

/* ==========================================================================
   19. CTA card
   ========================================================================== */
.rv-footer__cta { padding: 0 0 var(--rv-section-y); }
.rv-footer-cta-card {
	position: relative;
	padding: clamp(40px, 6vw, 80px);
	border-radius: var(--rv-r-xl);
	background: var(--rv-grad);
	color: #fff;
	overflow: hidden;
	display: flex; flex-direction: column;
	align-items: center; text-align: center;
	gap: 24px;
}
.rv-footer-cta-card::before {
	content: '';
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(255,255,255,.18), transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 40%);
}
.rv-footer-cta-card::after {
	content: '';
	position: absolute;
	right: -80px; bottom: -80px;
	width: 320px; height: 320px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	pointer-events: none;
}
.rv-footer-cta-card__eyebrow {
	position: relative;
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--rv-font-head);
	font-size: 12px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: rgba(255,255,255,.85);
	padding: 6px 14px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--rv-r-pill);
	backdrop-filter: blur(8px);
}
.rv-footer-cta-card__title {
	color: #fff;
	max-width: 760px;
	position: relative;
	font-size: clamp(1.8rem, 3.6vw, 2.8rem);
	margin: 0;
}
.rv-footer-cta-card__actions {
	position: relative;
	display: flex; flex-direction: column; align-items: center;
	gap: 14px;
	margin-top: 8px;
}
.rv-footer-cta-card .rv-btn {
	background: #fff;
	color: var(--rv-primary);
	box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.rv-footer-cta-card .rv-btn:hover { color: var(--rv-primary-600); background: #fff; }
.rv-footer-cta-card__email {
	color: rgba(255,255,255,.8);
	font-size: 14px;
	text-decoration: none;
	transition: color var(--rv-dur) var(--rv-ease);
}
.rv-footer-cta-card__email strong {
	color: #fff;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,.4);
	transition: border-color var(--rv-dur) var(--rv-ease);
	margin-left: 4px;
}
.rv-footer-cta-card__email:hover { color: #fff; }
.rv-footer-cta-card__email:hover strong { border-bottom-color: #fff; }

/* ==========================================================================
   20. Footer
   ========================================================================== */
.rv-footer {
	background: var(--rv-dark);
	color: #C7CCE0;
	padding-top: 0;
	position: relative;
	overflow: hidden;
}
.rv-footer::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
	pointer-events: none;
}

/* Main grid: brand spans full height, links in a 4-col row */
.rv-footer__main {
	display: grid;
	grid-template-columns: 1.5fr 2.5fr;
	gap: clamp(40px, 6vw, 80px);
	padding: clamp(60px, 8vw, 90px) 0 50px;
}
@media (max-width: 980px) {
	.rv-footer__main { grid-template-columns: 1fr; gap: 48px; }
}

.rv-footer__brand .rv-logo-text {
	color: #fff;
	font-size: 22px;
}
.rv-footer__about {
	color: #93A0B8;
	max-width: 360px;
	font-size: 15px;
	line-height: 1.65;
	margin: 18px 0 28px;
}

/* Newsletter under brand */
.rv-footer__newsletter-wrap h4 {
	color: #fff;
	margin: 0 0 6px;
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.rv-footer__newsletter-sub {
	color: #93A0B8;
	font-size: 13px;
	margin: 0 0 14px;
}
.rv-newsletter {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	max-width: 380px;
}
.rv-newsletter input {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	color: #fff;
	border-radius: var(--rv-r-pill);
	padding: 12px 18px;
	font-size: 14px;
	min-width: 0;
	transition: border-color var(--rv-dur) var(--rv-ease),
				background-color var(--rv-dur) var(--rv-ease);
}
.rv-newsletter input:focus {
	outline: none;
	border-color: var(--rv-accent);
	background: rgba(255,255,255,.07);
}
.rv-newsletter input::placeholder { color: #93A0B8; }
.rv-newsletter button {
	width: 44px; height: 44px;
	padding: 0;
	justify-content: center;
}
.rv-newsletter__msg {
	grid-column: 1 / -1;
	font-size: 13px;
	color: #93A0B8;
	min-height: 18px;
	margin: 4px 0 0;
}
.rv-newsletter__msg.is-success { color: #2ec27e; }
.rv-newsletter__msg.is-error { color: #ff6b6b; }

/* Link columns grid */
.rv-footer__links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 720px) { .rv-footer__links { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 380px) { .rv-footer__links { grid-template-columns: 1fr; } }

.rv-footer__col h4 {
	color: #fff;
	margin: 0 0 18px;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	padding-bottom: 12px;
}
.rv-footer__col h4::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 24px; height: 2px;
	background: var(--rv-grad);
	border-radius: 2px;
}
.rv-footer__col ul {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 12px;
}
.rv-footer__col a {
	color: #C7CCE0;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color var(--rv-dur) var(--rv-ease), transform var(--rv-dur) var(--rv-ease);
	text-decoration: none;
}
.rv-footer__col a:hover {
	color: #fff;
	transform: translateX(2px);
}

/* "Hiring" badge next to Careers */
.rv-footer__badge {
	display: inline-flex;
	align-items: center; justify-content: center;
	min-width: 22px; height: 20px;
	padding: 0 6px;
	border-radius: var(--rv-r-pill);
	background: var(--rv-grad);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	font-family: var(--rv-font-head);
}

/* Contact list */
.rv-footer__contact-list li {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
}
.rv-footer__contact-icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	color: var(--rv-accent);
	flex-shrink: 0;
	margin-top: 2px;
}
.rv-footer__contact-address span:last-child {
	color: #C7CCE0;
	font-size: 14px;
	line-height: 1.5;
	max-width: 200px;
}

/* Trust badges */
.rv-footer__badges {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	padding: 40px 0;
	border-top: 1px solid rgba(255,255,255,.06);
	border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 900px) { .rv-footer__badges { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .rv-footer__badges { grid-template-columns: repeat(2, 1fr); } }

.rv-footer__badge-item {
	display: flex; align-items: center; gap: 12px;
	padding: 14px;
	border-radius: var(--rv-r-md);
	transition: background-color var(--rv-dur) var(--rv-ease);
}
.rv-footer__badge-item:hover { background: rgba(255,255,255,.03); }
.rv-footer__badge-icon {
	display: grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 10px;
	background: var(--rv-grad-soft);
	color: var(--rv-accent);
	font-size: 18px;
	flex-shrink: 0;
}
.rv-footer__badge-item strong {
	display: block;
	color: #fff;
	font-family: var(--rv-font-head);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}
.rv-footer__badge-item small {
	color: #93A0B8;
	font-size: 12px;
}

/* Social + status row */
.rv-footer__social-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 40px 0 20px;
}
.rv-footer__hours {
	display: inline-flex; align-items: center; gap: 8px;
	margin: 0;
	font-size: 13px;
	color: #93A0B8;
	padding: 8px 16px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: var(--rv-r-pill);
}

.rv-socials {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: 8px; flex-wrap: wrap;
}
.rv-socials a {
	display: grid; place-items: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	color: #fff;
	transition: all var(--rv-dur) var(--rv-ease);
}
.rv-socials a:hover {
	background: var(--rv-grad);
	transform: translateY(-3px);
	box-shadow: var(--rv-shadow-glow);
}
.rv-socials--light a { background: rgba(255,255,255,.08); color: #fff; }

/* Giant wordmark */
.rv-footer__wordmark {
	font-family: var(--rv-font-head);
	font-weight: 800;
	font-size: clamp(80px, 18vw, 240px);
	line-height: 1;
	letter-spacing: -0.05em;
	background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-align: center;
	margin: 20px 0 -10px;
	padding: 0 20px;
	user-select: none;
	overflow: hidden;
	white-space: nowrap;
}

/* Bottom strip */
.rv-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.06);
	padding: 22px 0;
}
.rv-footer__bottom .rv-container {
	display: flex; justify-content: space-between; align-items: center;
	gap: 16px; flex-wrap: wrap;
}
.rv-footer__copy {
	margin: 0;
	color: #93A0B8;
	font-size: 13px;
}
.rv-footer__bottom-menu {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 22px; flex-wrap: wrap;
}
.rv-footer__bottom-menu a {
	color: #93A0B8;
	font-size: 13px;
	text-decoration: none;
	transition: color var(--rv-dur) var(--rv-ease);
}
.rv-footer__bottom-menu a:hover { color: #fff; }

.rv-footer__credit {
	margin: 0;
	color: #93A0B8;
	font-size: 13px;
}
.rv-footer__heart {
	color: #ff6b9d;
	display: inline-block;
	animation: rv-heartbeat 1.4s var(--rv-ease) infinite;
}
@keyframes rv-heartbeat {
	0%, 100% { transform: scale(1); }
	30% { transform: scale(1.2); }
	60% { transform: scale(1); }
}

@media (max-width: 720px) {
	.rv-footer__bottom .rv-container { justify-content: center; text-align: center; }
	.rv-footer__bottom-menu { justify-content: center; }
}

/* ==========================================================================
   21. Scroll progress, back-to-top, WhatsApp, cookies, preloader
   ========================================================================== */
#rv-scroll-progress {
	position: fixed; top: 0; left: 0; right: 0;
	height: 3px;
	z-index: 60;
	pointer-events: none;
}
#rv-scroll-progress span {
	display: block; height: 100%; width: 0;
	background: var(--rv-grad);
	transition: width .1s linear;
}

.rv-totop {
	position: fixed; right: 20px; bottom: 90px;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--rv-grad);
	color: #fff;
	display: grid; place-items: center;
	box-shadow: var(--rv-shadow-glow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--rv-dur) var(--rv-ease);
	z-index: 40;
	border: 0;
}
.rv-totop.is-visible {
	opacity: 1; visibility: visible;
	transform: translateY(0);
}

.rv-whatsapp {
	position: fixed; right: 20px; bottom: 28px;
	width: 52px; height: 52px;
	border-radius: 50%;
	background: #25D366; color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 16px 36px rgba(37,211,102,.4);
	z-index: 40;
}

.rv-cookie {
	position: fixed; left: 20px; right: 20px; bottom: 20px;
	max-width: 720px; margin: 0 auto;
	background: var(--rv-card-bg);
	color: var(--rv-text);
	border: 1px solid var(--rv-line);
	box-shadow: var(--rv-shadow-lg);
	border-radius: var(--rv-r-md);
	padding: 16px 20px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
	z-index: 70;
	font-size: 14px;
	transition: opacity .3s var(--rv-ease), transform .3s var(--rv-ease);
}
.rv-cookie[hidden],
.rv-cookie.is-hidden { display: none !important; }
.rv-cookie.is-leaving {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}
.rv-cookie p { margin: 0; }
@media (max-width: 540px) {
	.rv-cookie {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
}

.rv-preloader {
	position: fixed; inset: 0;
	background: var(--rv-dark);
	z-index: 9999;
	display: grid; place-items: center;
	transition: opacity .5s var(--rv-ease), visibility .5s var(--rv-ease);
}
.rv-preloader.is-hidden { opacity: 0; visibility: hidden; }
.rv-preloader__inner {
	display: flex; align-items: center; gap: 12px;
	color: #fff;
	font-family: var(--rv-font-head);
	font-weight: 700; font-size: 22px;
}
.rv-preloader__mark {
	width: 36px; height: 36px;
	border-radius: 10px;
	background: var(--rv-grad);
	animation: rv-spin 1.2s var(--rv-ease) infinite;
}
@keyframes rv-spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   22. Page hero / breadcrumbs
   ========================================================================== */
.rv-page-hero {
	padding-top: clamp(80px, 10vw, 120px);
	padding-bottom: clamp(40px, 6vw, 60px);
	position: relative;
	overflow: hidden;
}
.rv-page-hero::before {
	content: '';
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(800px 400px at 80% 0%, rgba(0,229,255,.10), transparent 60%),
		radial-gradient(800px 400px at 0% 100%, rgba(91,33,255,.10), transparent 60%);
}
.rv-page-hero__title { max-width: 880px; }
.rv-page-hero__sub {
	color: var(--rv-muted);
	max-width: 720px;
	font-size: 1.1rem;
}
.rv-breadcrumbs ol {
	list-style: none; padding: 0; margin: 0 0 16px;
	display: flex; flex-wrap: wrap; gap: 6px;
	font-size: 13px;
	color: var(--rv-muted);
}
.rv-breadcrumbs li + li::before {
	content: '/';
	margin-right: 6px;
	opacity: .5;
}
.rv-breadcrumbs a { color: var(--rv-muted); }
.rv-breadcrumbs a:hover { color: var(--rv-text); }

/* ==========================================================================
   23. Single post / Prose / Blog cards
   ========================================================================== */
.rv-prose {
	max-width: 760px; margin-inline: auto;
	font-size: 1.05rem; line-height: 1.8;
}
.rv-prose h2 { margin-top: 1.6em; }
.rv-prose h3 { margin-top: 1.4em; }
.rv-prose img,
.rv-prose figure {
	border-radius: var(--rv-r-md);
	margin-block: 1.6em;
}
.rv-prose blockquote {
	border-left: 4px solid var(--rv-primary);
	padding: 0 22px;
	margin: 1.6em 0;
	font-family: var(--rv-font-head);
	font-size: 1.2rem;
	color: var(--rv-text);
}
.rv-prose pre {
	background: var(--rv-light);
	padding: 18px;
	border-radius: var(--rv-r-md);
	overflow: auto;
}
.rv-prose code {
	background: var(--rv-light);
	padding: 2px 6px;
	border-radius: 6px;
	font-size: .92em;
}
.rv-prose ul, .rv-prose ol { padding-left: 1.4em; }

.rv-single__hero { padding: clamp(60px, 8vw, 90px) 0 30px; }
.rv-single__meta {
	display: flex; flex-wrap: wrap;
	align-items: center; gap: 8px;
	margin-bottom: 18px;
	color: var(--rv-muted);
	font-size: 14px;
}
.rv-chip {
	display: inline-block;
	padding: 4px 10px;
	background: var(--rv-light);
	border-radius: var(--rv-r-pill);
	color: var(--rv-text);
	font-size: 12px;
	font-weight: 600;
}
.rv-single__title { font-size: clamp(2rem, 4vw, 3rem); }
.rv-single__lede {
	font-size: 1.2rem;
	color: var(--rv-muted);
	max-width: 720px;
}
.rv-single__author {
	display: flex; align-items: center; gap: 12px;
	margin-top: 24px;
}
.rv-single__author img { border-radius: 50%; }
.rv-single__author small {
	color: var(--rv-muted);
	display: block;
}
.rv-single__image { margin: 30px 0; }
.rv-single__cover {
	width: 100%;
	max-height: 540px;
	object-fit: cover;
	border-radius: var(--rv-r-lg);
}
.rv-single__body {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 60px;
	align-items: start;
}
@media (max-width: 980px) {
	.rv-single__body { grid-template-columns: 1fr; }
	.rv-single__toc { display: none; }
}
.rv-single__toc {
	position: sticky; top: 96px;
	padding: 18px;
	background: var(--rv-light);
	border-radius: var(--rv-r-md);
	font-size: 14px;
}
.rv-single__toc h4 {
	margin: 0 0 10px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--rv-muted);
}
.rv-single__toc-list {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 6px;
}
.rv-single__toc-list a {
	color: var(--rv-text);
	border-left: 2px solid transparent;
	padding-left: 10px;
}
.rv-single__toc-list a.is-active {
	color: var(--rv-primary);
	border-left-color: var(--rv-primary);
}
.rv-share {
	display: flex; gap: 16px;
	margin-top: 32px; padding: 20px;
	background: var(--rv-light);
	border-radius: var(--rv-r-md);
	align-items: center;
	flex-wrap: wrap;
}
.rv-share a { font-weight: 500; color: var(--rv-text); }
.rv-share a:hover { color: var(--rv-primary); }

/* Blog grid */
.rv-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 1000px) { .rv-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .rv-blog-grid { grid-template-columns: 1fr; } }

.rv-post-card {
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-lg);
	overflow: hidden;
	transition: transform var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-post-card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-md); }
.rv-post-card__link {
	display: block; color: var(--rv-text);
	text-decoration: none;
}
.rv-post-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--rv-light);
}
.rv-post-card__img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s var(--rv-ease);
}
.rv-post-card:hover .rv-post-card__img { transform: scale(1.04); }
.rv-post-card__placeholder {
	display: block;
	aspect-ratio: 16/10;
	background: var(--rv-grad-soft);
}
.rv-post-card__body { padding: 22px; }
.rv-post-card__meta {
	display: flex; flex-wrap: wrap;
	align-items: center; gap: 8px;
	font-size: 12px;
	color: var(--rv-muted);
	margin-bottom: 12px;
}
.rv-post-card__title { font-size: 1.15rem; margin: 0 0 8px; }
.rv-post-card__excerpt {
	color: var(--rv-muted);
	font-size: 14px;
	margin: 0 0 16px;
}
.rv-post-card__more {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--rv-font-head);
	font-size: 14px; font-weight: 600;
	color: var(--rv-primary);
}

.rv-blog-filters {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-bottom: 28px;
}
.rv-blog-filters a {
	padding: 8px 16px;
	border-radius: var(--rv-r-pill);
	background: var(--rv-light);
	color: var(--rv-text);
	font-size: 14px;
	font-weight: 500;
}
.rv-blog-filters a.is-active,
.rv-blog-filters a:hover {
	background: var(--rv-grad);
	color: #fff;
}

/* Pagination */
.rv-pagination { margin-top: 40px; }
.rv-pagination ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 6px;
	justify-content: center;
}
.rv-pagination a, .rv-pagination span {
	display: inline-flex;
	align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border-radius: var(--rv-r-pill);
	background: var(--rv-light);
	color: var(--rv-text);
	font-weight: 600;
	text-decoration: none;
}
.rv-pagination .current {
	background: var(--rv-grad);
	color: #fff;
}

/* ==========================================================================
   24. Forms
   ========================================================================== */
.rv-form {
	background: var(--rv-light);
	border: 1px solid var(--rv-line);
	padding: 28px;
	border-radius: var(--rv-r-lg);
	display: flex; flex-direction: column; gap: 14px;
}
.rv-form__row {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 600px) { .rv-form__row { grid-template-columns: 1fr; } }
.rv-field {
	display: flex; flex-direction: column;
	gap: 6px;
	position: relative;
}
.rv-field span {
	font-size: 13px;
	font-weight: 600;
	color: var(--rv-text);
	opacity: .85;
}
.rv-field input,
.rv-field textarea {
	padding: 13px 16px;
	background: var(--rv-bg);
	border: 1px solid var(--rv-line);
	color: var(--rv-text);
	border-radius: var(--rv-r-md);
	font-size: 15px;
	width: 100%;
	transition: border-color var(--rv-dur) var(--rv-ease),
				background-color var(--rv-dur) var(--rv-ease),
				box-shadow var(--rv-dur) var(--rv-ease);
}
.rv-field input::placeholder,
.rv-field textarea::placeholder { color: var(--rv-muted); }
.rv-field input:focus,
.rv-field textarea:focus {
	outline: none;
	border-color: var(--rv-primary);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--rv-primary) 15%, transparent);
}

/* On dark sections */
.rv-section--dark .rv-form {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.08);
}
.rv-section--dark .rv-field span { color: rgba(255,255,255,.85); }
.rv-section--dark .rv-field input,
.rv-section--dark .rv-field textarea {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.1);
	color: #fff;
}
.rv-section--dark .rv-field input::placeholder,
.rv-section--dark .rv-field textarea::placeholder { color: rgba(255,255,255,.45); }
.rv-section--dark .rv-field input:focus,
.rv-section--dark .rv-field textarea:focus {
	border-color: var(--rv-accent);
	background: rgba(255,255,255,.08);
	box-shadow: 0 0 0 4px rgba(0,229,255,.18);
}

.rv-honey {
	position: absolute; left: -9999px;
	opacity: 0; pointer-events: none;
}
.rv-form__msg {
	min-height: 22px; margin: 0;
	font-size: 14px;
}
.rv-form__msg.is-success { color: #2ec27e; }
.rv-form__msg.is-error { color: #ff6b6b; }

/* Contact section (dark) */
.rv-contact__lede {
	color: rgba(230,232,242,.85);
	font-size: 1.1rem;
}
.rv-contact__points {
	list-style: none; padding: 0;
	margin: 24px 0;
	display: flex; flex-direction: column; gap: 12px;
	color: rgba(230,232,242,.85);
}
.rv-contact__points li {
	display: flex; align-items: center; gap: 10px;
}
.rv-contact__points a { color: #fff; }

/* Map */
.rv-map__iframe {
	width: 100%; height: 420px;
	border: 0;
	border-radius: var(--rv-r-lg);
	filter: grayscale(.2);
}

/* Service detail */
.rv-page-hero__cta {
	display: flex; align-items: center; gap: 16px;
	margin-top: 18px; flex-wrap: wrap;
}
.rv-pricetag { color: var(--rv-muted); font-size: 14px; }
.rv-service-features {
	background: var(--rv-light);
	border-radius: var(--rv-r-lg);
	padding: 28px;
}
.rv-service-features h3 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--rv-muted);
	margin-bottom: 14px;
}
.rv-service-features ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 12px;
}
.rv-service-features li {
	display: flex; gap: 10px;
	align-items: flex-start;
}
.rv-service-features li svg {
	color: var(--rv-primary);
	flex-shrink: 0;
	margin-top: 4px;
}

/* Portfolio detail */
.rv-pf-meta {
	display: grid; grid-template-columns: repeat(5, 1fr);
	gap: 22px; padding: 28px;
	background: var(--rv-light);
	border-radius: var(--rv-r-lg);
	margin-bottom: 36px;
}
@media (max-width: 800px) { .rv-pf-meta { grid-template-columns: repeat(2, 1fr); } }
.rv-pf-meta h5 {
	color: var(--rv-muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: 11px;
	margin: 0 0 6px;
}
.rv-pf-meta p { margin: 0; font-weight: 600; color: var(--rv-text); }
.rv-pf-cover { margin-bottom: 36px; }
.rv-pf-cover img {
	width: 100%;
	border-radius: var(--rv-r-lg);
}
.rv-pf-nav {
	display: flex; justify-content: space-between;
	padding-top: 30px;
	border-top: 1px solid var(--rv-line);
	gap: 16px; flex-wrap: wrap;
}

/* Case detail */
.rv-case-meta {
	display: flex; gap: 18px; flex-wrap: wrap;
	color: var(--rv-muted);
}
.rv-case-cover { padding: 0 0 30px; }
.rv-case-cover img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
.rv-case-kpis {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 18px; padding: 28px;
	background: var(--rv-light);
	border-radius: var(--rv-r-lg);
	margin-bottom: 40px;
}
@media (max-width: 700px) { .rv-case-kpis { grid-template-columns: repeat(2, 1fr); } }
.rv-case-kpi__value {
	display: block;
	font-family: var(--rv-font-head);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	font-weight: 700;
}
.rv-case-kpi__label {
	color: var(--rv-muted);
	font-size: 13px;
}
.rv-case-cs h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--rv-primary);
}

/* ==========================================================================
   25. 404
   ========================================================================== */
.rv-404 {
	padding: clamp(60px, 10vw, 120px) 0;
	text-align: center;
}
.rv-404__inner {
	max-width: 640px;
	margin: 0 auto;
}
.rv-404__code {
	font-family: var(--rv-font-head);
	font-weight: 800;
	font-size: clamp(6rem, 18vw, 14rem);
	line-height: 1;
	background: var(--rv-grad);
	-webkit-background-clip: text; background-clip: text; color: transparent;
	margin-bottom: 8px;
}
.rv-404__title { margin-bottom: 8px; }
.rv-404__sub {
	color: var(--rv-muted);
	margin-bottom: 24px;
}
.rv-404__actions {
	display: flex; gap: 10px;
	justify-content: center; flex-wrap: wrap;
	margin-bottom: 30px;
}
.rv-404__search input {
	width: 100%; max-width: 420px;
	padding: 12px 18px;
	border-radius: var(--rv-r-pill);
	border: 1px solid var(--rv-line);
	background: var(--rv-bg);
	color: var(--rv-text);
}

/* ==========================================================================
   26. Comments
   ========================================================================== */
.rv-comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--rv-line);
}
.rv-comments__title { font-size: 1.4rem; }
.rv-comments__list {
	list-style: none; padding: 0;
	margin: 0 0 30px;
	display: flex; flex-direction: column; gap: 24px;
}
.rv-comment-form input,
.rv-comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--rv-r-md);
	border: 1px solid var(--rv-line);
	background: var(--rv-bg);
	color: var(--rv-text);
	margin-top: 4px;
}
.rv-comment-form p { margin-bottom: 14px; }

/* ==========================================================================
   27. Misc / Jobs / widgets
   ========================================================================== */
.rv-jobs {
	display: flex; flex-direction: column; gap: 12px;
}
.rv-job {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; padding: 22px 26px;
	background: var(--rv-card-bg);
	border: 1px solid var(--rv-line);
	border-radius: var(--rv-r-lg);
	color: var(--rv-text);
	text-decoration: none;
	transition: all var(--rv-dur) var(--rv-ease);
}
.rv-job:hover {
	transform: translateX(4px);
	border-color: var(--rv-primary);
	color: var(--rv-text);
}
.rv-job h3 { margin: 0 0 4px; font-size: 1.1rem; }
.rv-job p { margin: 0; color: var(--rv-muted); font-size: 14px; }
.rv-job span {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--rv-primary);
	font-weight: 600; font-size: 14px;
	flex-shrink: 0;
}

.rv-widget {
	margin-bottom: 30px;
	padding: 20px;
	background: var(--rv-light);
	border-radius: var(--rv-r-md);
}
.rv-widget__title {
	margin: 0 0 12px;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--rv-muted);
}
.rv-widget ul {
	list-style: none; padding: 0; margin: 0;
}
.rv-widget li { padding: 6px 0; }
.rv-widget a { color: var(--rv-text); }
.rv-widget a:hover { color: var(--rv-primary); }

/* ==========================================================================
   28. Reveal animations
   ========================================================================== */
[data-rv-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s var(--rv-ease), transform .8s var(--rv-ease);
}
[data-rv-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   29. Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	[data-rv-reveal] { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* ==========================================================================
   30. Print
   ========================================================================== */
@media print {
	.rv-header,
	.rv-footer,
	.rv-totop,
	.rv-whatsapp,
	.rv-cookie,
	.rv-preloader,
	#rv-scroll-progress { display: none !important; }
	body { color: #000; background: #fff; }
	a { color: #000; text-decoration: underline; }
	.rv-section { padding-block: 24px; }
}
