/**
 * Quality Care Theme — main stylesheet
 * Matches React design tokens & animations from src/styles.css
 */

/* -------------------------------------------------------------------------- */
/* Design tokens                                                              */
/* -------------------------------------------------------------------------- */
:root {
	--clr-purple: #A855A0;
	--clr-purple-mid: #C084C0;
	--clr-purple-light: #E8D5F0;
	--clr-green: #7CB342;
	--clr-green-dark: #5A8A2A;
	--clr-green-light: #D4EDBA;
	--clr-lavender-bg: #F3EAF7;
	--clr-mint-bg: #EAF4EA;
	--clr-page: #FDFCFF;
	--clr-text-dark: #2D1B2E;
	--clr-text-body: #5C4A5E;
	--clr-white: #FFFFFF;
	--clr-border: rgba(168, 85, 160, 0.15);
	--clr-input-border: rgba(168, 85, 160, 0.20);
	--header-h: 76px;
	--announce-h: 36px;
	--font-sans: "Nunito", ui-sans-serif, system-ui, sans-serif;
	--ease-out: cubic-bezier(0.2, 0, 0, 1);
	--radius-card: 28px;
	--radius-pill: 9999px;
	--shadow-card: 0 8px 40px rgba(168, 85, 160, 0.10);
	--shadow-card-hover: 0 20px 60px rgba(168, 85, 160, 0.18);
}

/* -------------------------------------------------------------------------- */
/* Reset / base                                                               */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	border-color: var(--clr-purple-light);
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
	margin: 0;
}

ul, ol {
	padding: 0;
	list-style: none;
}

img, svg, video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

html,
body {
	font-family: var(--font-sans);
	background: var(--clr-page);
	color: var(--clr-text-dark);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
	overflow-x: hidden;
	max-width: 100%;
}

body.qcms-body {
	padding-top: calc(var(--header-h) + var(--announce-h));
	width: 100%;
}

#main-content {
	max-width: 100%;
	overflow-x: hidden;
}

body.qcms-menu-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Keyframes                                                                  */
/* -------------------------------------------------------------------------- */
@keyframes scrollFadeUp {
	from { opacity: 0; transform: translateY(50px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes floatBob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

@keyframes softPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

/* -------------------------------------------------------------------------- */
/* Layout utilities                                                           */
/* -------------------------------------------------------------------------- */
.qcms-container {
	width: 100%;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(16px, 4vw, 48px);
	padding-right: clamp(16px, 4vw, 48px);
	box-sizing: border-box;
}

.qcms-container--narrow {
	max-width: 1200px;
}

.qcms-container--tight {
	max-width: 780px;
}

.qcms-grid-2,
.qcms-grid-3,
.qcms-grid-4 {
	display: grid;
	gap: 28px;
	width: 100%;
}

.qcms-grid-2 > *,
.qcms-grid-3 > *,
.qcms-grid-4 > * {
	min-width: 0;
}

.qcms-grid-2 { grid-template-columns: 1fr; }
.qcms-grid-3 { grid-template-columns: 1fr; }
.qcms-grid-4 { grid-template-columns: 1fr; }

.qcms-section {
	padding: clamp(48px, 8vw, 72px) 0;
}

.qcms-section--sm {
	padding: 48px 0;
}

.qcms-section--lg {
	padding: 88px 0;
}

.qcms-eyebrow {
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.qcms-eyebrow--purple { color: var(--clr-purple); }
.qcms-eyebrow--green { color: var(--clr-green); }

.qcms-h2 {
	font-weight: 800;
	font-size: clamp(28px, 4vw, 42px);
	color: var(--clr-text-dark);
	line-height: 1.2;
}

.qcms-body {
	font-size: 17px;
	color: var(--clr-text-body);
	line-height: 1.8;
}

.qcms-body p + p {
	margin-top: 1rem;
}

.qcms-lead {
	font-size: 19px;
	color: var(--clr-text-body);
	line-height: 1.75;
}

.qcms-section-head {
	max-width: 640px;
}

.qcms-section--lavender {
	background: var(--clr-lavender-bg);
}

.qcms-section--mint {
	background: var(--clr-mint-bg);
}

.qcms-text-link {
	font-weight: 700;
	font-size: 14px;
	color: var(--clr-purple);
	transition: transform 0.3s var(--ease-out);
}

.qcms-text-link:hover {
	transform: translateX(4px);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* -------------------------------------------------------------------------- */
/* Reveal / motion helpers                                                    */
/* -------------------------------------------------------------------------- */
.reveal-init { opacity: 0; }

.reveal {
	animation: scrollFadeUp 0.7s var(--ease-out) forwards;
}

.float-blob {
	animation: floatBob 6s ease-in-out infinite;
}

.marquee-bar {
	background: linear-gradient(90deg, #A855A0 0%, #C084C0 40%, #7CB342 70%, #A855A0 100%);
	background-size: 300% 100%;
	animation: gradientShift 6s linear infinite;
}

.soft-pulse {
	animation: softPulse 1.8s ease-in-out infinite;
}

/* -------------------------------------------------------------------------- */
/* Cards                                                                      */
/* -------------------------------------------------------------------------- */
.qcms-card {
	background: #fff;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	transition: all 0.35s var(--ease-out);
}

.qcms-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card-hover);
}

.qcms-card--static:hover {
	transform: none;
	box-shadow: var(--shadow-card);
}

.qcms-card--flush {
	padding: 0;
	overflow: hidden;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.btn-primary {
	background: #A855A0;
	color: #fff;
	border-radius: var(--radius-pill);
	padding: 14px clamp(20px, 4vw, 36px);
	font-weight: 800;
	font-family: var(--font-sans);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s var(--ease-out);
	border: none;
	cursor: pointer;
	line-height: 1.2;
	max-width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.btn-primary:hover {
	transform: scale(1.04);
	box-shadow: 0 0 28px rgba(168, 85, 160, 0.40);
	color: #fff;
}

.btn-primary:active { transform: scale(0.95); }

.btn-primary--sm {
	padding: 10px 24px;
	font-size: 14px;
}

.btn-secondary {
	background: transparent;
	color: #A855A0;
	border: 2px solid #A855A0;
	border-radius: var(--radius-pill);
	padding: 12px clamp(18px, 4vw, 34px);
	font-weight: 800;
	font-family: var(--font-sans);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s var(--ease-out);
	cursor: pointer;
	line-height: 1.2;
	max-width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.btn-secondary:hover {
	background: #F3EAF7;
	color: #A855A0;
}

.btn-secondary:active { transform: scale(0.95); }

.btn-secondary--on-dark {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

.btn-secondary--on-dark:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.btn-ghost-white {
	background: #fff;
	color: #A855A0;
	border-radius: var(--radius-pill);
	padding: 14px clamp(20px, 4vw, 36px);
	font-weight: 800;
	font-family: var(--font-sans);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s var(--ease-out);
	border: none;
	cursor: pointer;
	line-height: 1.2;
	max-width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.btn-ghost-white:hover {
	box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
	transform: scale(1.04);
	color: #A855A0;
}

/* -------------------------------------------------------------------------- */
/* Nav links                                                                  */
/* -------------------------------------------------------------------------- */
.nav-link {
	position: relative;
	font-weight: 600;
	font-size: 15px;
	color: #5C4A5E;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	display: block;
	height: 2px;
	background: #A855A0;
	width: 0;
	transition: width 0.3s ease;
	border-radius: 2px;
}

.nav-link:hover,
.nav-link.current-menu-item,
.current-menu-item > .nav-link,
.current_page_item > .nav-link {
	color: #A855A0;
}

.nav-link:hover::after,
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after {
	width: 100%;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.qcms-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: var(--header-h);
	background: #fff;
	box-shadow: 0 2px 24px rgba(168, 85, 160, 0.09);
	border-bottom: 1px solid rgba(168, 85, 160, 0.10);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	animation: fadeSlideDown 0.5s ease-out;
}

.qcms-header__inner {
	height: 100%;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	box-sizing: border-box;
}

.qcms-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.qcms-header__logo img {
	height: clamp(40px, 8vw, 52px);
	width: auto;
	max-width: min(180px, 55vw);
	object-fit: contain;
}

.qcms-header__nav {
	display: none;
	align-items: center;
	gap: clamp(10px, 1.2vw, 20px);
	min-width: 0;
	flex: 1 1 auto;
	justify-content: center;
}

.qcms-header__nav .menu,
.qcms-header__nav ul {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: center;
	gap: clamp(10px, 1.2vw, 20px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.qcms-header__nav .menu li,
.qcms-header__nav ul li {
	margin: 0;
}

.qcms-header__nav .menu a,
.qcms-header__nav ul a {
	position: relative;
	font-weight: 600;
	font-size: clamp(13px, 1.1vw, 15px);
	color: #5C4A5E;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.qcms-header__nav .menu a::after,
.qcms-header__nav ul a::after {
	content: '';
	display: block;
	height: 2px;
	background: #A855A0;
	width: 0;
	transition: width 0.3s ease;
	border-radius: 2px;
}

.qcms-header__nav .menu a:hover,
.qcms-header__nav .menu .current-menu-item > a,
.qcms-header__nav .menu .current_page_item > a,
.qcms-header__nav ul a:hover,
.qcms-header__nav ul .current-menu-item > a,
.qcms-header__nav ul .current_page_item > a {
	color: #A855A0;
}

.qcms-header__nav .menu a:hover::after,
.qcms-header__nav .menu .current-menu-item > a::after,
.qcms-header__nav .menu .current_page_item > a::after,
.qcms-header__nav ul a:hover::after,
.qcms-header__nav ul .current-menu-item > a::after,
.qcms-header__nav ul .current_page_item > a::after {
	width: 100%;
}

.qcms-header__actions {
	display: none;
	align-items: center;
	flex-shrink: 0;
	gap: 14px;
}

.qcms-header__phone {
	font-weight: 700;
	font-size: 14px;
	color: #A855A0;
	display: none;
}

.qcms-header__toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: transparent;
	border: none;
}

.qcms-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #A855A0;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.qcms-header__toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.qcms-header__toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.qcms-header__toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.qcms-mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: #fff;
	overflow-y: auto;
	animation: fadeSlideDown 0.3s ease-out;
}

.qcms-mobile-menu.is-open {
	display: block;
}

.qcms-mobile-menu__bar {
	position: sticky;
	top: 0;
	display: flex;
	justify-content: flex-end;
	background: #fff;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(168, 85, 160, 0.10);
	z-index: 10;
}

.qcms-mobile-menu__close {
	font-size: 32px;
	color: #A855A0;
	background: transparent;
	border: none;
	line-height: 1;
	cursor: pointer;
}

.qcms-mobile-menu__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 24px 24px 48px;
}

.qcms-mobile-menu__body .menu,
.qcms-mobile-menu__body ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.qcms-mobile-menu__body .menu a,
.qcms-mobile-menu__body ul a {
	font-weight: 700;
	font-size: 20px;
	color: #2D1B2E;
}

.qcms-mobile-menu__phone {
	font-weight: 700;
	font-size: 16px;
	color: #A855A0;
	margin-top: 8px;
}

/* -------------------------------------------------------------------------- */
/* Announcement bar                                                           */
/* -------------------------------------------------------------------------- */
.announcement-bar {
	position: fixed;
	left: 0;
	right: 0;
	top: var(--header-h);
	z-index: 9998;
	height: var(--announce-h);
	overflow: hidden;
	background: linear-gradient(90deg, #A855A0 0%, #C084C0 55%, #7CB342 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.announcement-track {
	display: flex;
	align-items: center;
	height: 100%;
	width: max-content;
	animation: marqueeScroll 40s linear infinite;
	will-change: transform;
}

.announcement-bar:hover .announcement-track,
.announcement-track:focus-within {
	animation-play-state: paused;
}

.announcement-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 18px;
	padding-right: 18px;
}

.announcement-item__text {
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}

.announcement-item__heart {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
}

.announcement-group {
	display: flex;
	align-items: center;
}

/* -------------------------------------------------------------------------- */
/* Page hero                                                                  */
/* -------------------------------------------------------------------------- */
.qcms-page-hero {
	position: relative;
	overflow: hidden;
	background: #F3EAF7;
	padding-top: 0;
}

.qcms-page-hero__blob {
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: #C084C0;
	opacity: 0.12;
	filter: blur(80px);
	top: -80px;
	right: -80px;
	pointer-events: none;
}

.qcms-page-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: clamp(40px, 6vw, 56px) clamp(16px, 4vw, 48px);
}

.qcms-breadcrumb {
	font-size: 13px;
	color: #5C4A5E;
	font-weight: 600;
}

.qcms-breadcrumb a {
	color: #A855A0;
}

.qcms-breadcrumb__sep {
	margin: 0 8px;
}

.qcms-page-hero__title {
	margin-top: 16px;
	font-weight: 800;
	font-size: clamp(34px, 5vw, 54px);
	color: #2D1B2E;
	line-height: 1.14;
}

.qcms-page-hero__tagline {
	margin-top: 20px;
	font-size: 18px;
	color: #5C4A5E;
	line-height: 1.7;
	max-width: 520px;
}

.qcms-page-hero__media {
	position: relative;
}

.qcms-page-hero__frame {
	border-radius: 28px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	box-shadow: 0 20px 60px rgba(168, 85, 160, 0.20);
}

.qcms-page-hero__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/* Closing CTA                                                                */
/* -------------------------------------------------------------------------- */
.qcms-closing-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(135deg, #A855A0 0%, #C084C0 40%, #7CB342 100%);
	padding: 88px clamp(16px, 4vw, 48px);
}

.qcms-closing-cta__blob {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	filter: blur(80px);
	top: -100px;
	left: -100px;
	pointer-events: none;
}

.qcms-closing-cta__inner {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

.qcms-closing-cta__title {
	font-weight: 800;
	font-size: clamp(30px, 4.5vw, 46px);
	color: #fff;
	line-height: 1.15;
}

.qcms-closing-cta__body {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
	max-width: 580px;
}

.qcms-closing-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.qcms-footer {
	background: #2D1B2E;
	padding: 68px 0 32px;
}

.qcms-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.qcms-footer__logo {
	height: 56px;
	width: auto;
	filter: brightness(0) invert(1);
}

.qcms-footer__tagline {
	margin-top: 16px;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.60);
	line-height: 1.7;
}

.qcms-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.qcms-footer__social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.qcms-footer__social a:hover {
	background: #A855A0;
	transform: scale(1.08);
}

.qcms-footer__heading {
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.qcms-footer__menu,
.qcms-footer__menu ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.qcms-footer__menu a,
.qcms-footer__link {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.3s ease;
}

.qcms-footer__menu a:hover,
.qcms-footer__link:hover {
	color: #C084C0;
}

.qcms-footer__contact {
	margin-top: 20px;
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.qcms-footer__cta {
	display: inline-flex;
	margin-top: 20px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
}

.qcms-footer__cta:hover {
	background: #A855A0;
	color: #fff;
}

.qcms-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	margin-top: 48px;
	padding-top: 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.qcms-footer__copy,
.qcms-footer__legal {
	font-weight: 400;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.qcms-footer__legal {
	display: flex;
	gap: 12px;
	align-items: center;
}

.qcms-footer__legal a {
	transition: color 0.3s ease;
}

.qcms-footer__legal a:hover {
	color: #C084C0;
}

/* -------------------------------------------------------------------------- */
/* Forms                                                                      */
/* -------------------------------------------------------------------------- */
.qcms-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.qcms-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.qcms-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.qcms-field__label {
	font-weight: 700;
	font-size: 14px;
	color: #2D1B2E;
}

.qcms-field__req {
	color: #A855A0;
}

.qcms-input,
.qcms-select,
.qcms-textarea {
	width: 100%;
	border: 1.5px solid rgba(168, 85, 160, 0.20);
	border-radius: 14px;
	padding: 12px 16px;
	font-size: 15px;
	color: #2D1B2E;
	font-family: var(--font-sans);
	background: #FDFCFF;
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.qcms-input:focus,
.qcms-select:focus,
.qcms-textarea:focus {
	border-color: #A855A0;
	box-shadow: 0 0 0 3px rgba(168, 85, 160, 0.12);
}

.qcms-textarea {
	resize: vertical;
	min-height: 120px;
}

.qcms-select {
	appearance: auto;
}

.qcms-input--pill {
	border-radius: var(--radius-pill);
	padding: 13px 22px;
	border: 1.5px solid rgba(168, 85, 160, 0.22);
	background: #fff;
}

.qcms-form__message {
	font-size: 14px;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 14px;
	display: none;
}

.qcms-form__message.is-visible {
	display: block;
}

.qcms-form__message.is-success {
	background: #D4EDBA;
	color: #5A8A2A;
}

.qcms-form__message.is-error {
	background: #F3EAF7;
	color: #A855A0;
}

.qcms-form__success {
	text-align: center;
	padding: 40px 8px;
	display: none;
}

.qcms-form__success.is-visible {
	display: block;
}

.qcms-form__success-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #D4EDBA;
	color: #5A8A2A;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	font-weight: 800;
	margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* FAQ accordion                                                              */
/* -------------------------------------------------------------------------- */
.qcms-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.qcms-faq-item {
	padding: 18px 24px;
	cursor: pointer;
}

.qcms-faq-item__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	font: inherit;
}

.qcms-faq-item__question {
	font-weight: 700;
	font-size: 17px;
	color: #2D1B2E;
	margin: 0;
}

.qcms-faq-item__icon {
	color: #A855A0;
	font-size: 22px;
	font-weight: 800;
	flex-shrink: 0;
	line-height: 1;
}

.qcms-faq-item__answer {
	display: none;
	margin-top: 12px;
	font-size: 15px;
	color: #5C4A5E;
	line-height: 1.7;
}

.qcms-faq-item.is-open .qcms-faq-item__answer {
	display: block;
}

/* -------------------------------------------------------------------------- */
/* Blog cards                                                                 */
/* -------------------------------------------------------------------------- */
.qcms-blog-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
}

.qcms-blog-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.qcms-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.qcms-blog-card:hover .qcms-blog-card__media img {
	transform: scale(1.05);
}

.qcms-blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px;
}

.qcms-blog-card__cat {
	display: inline-block;
	align-self: flex-start;
	background: #F3EAF7;
	color: #A855A0;
	font-weight: 700;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: var(--radius-pill);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.qcms-blog-card__title {
	margin-top: 16px;
	font-weight: 800;
	font-size: 20px;
	color: #2D1B2E;
	line-height: 1.3;
}

.qcms-blog-card__excerpt {
	margin-top: 12px;
	font-size: 15px;
	color: #5C4A5E;
	line-height: 1.7;
}

.qcms-blog-card__meta {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
}

.qcms-blog-card__date {
	font-weight: 700;
	color: #7CB342;
}

.qcms-blog-card__more {
	font-weight: 700;
	color: #A855A0;
	font-size: 14px;
}

/* Category / filter chips */
.qcms-chip {
	display: inline-flex;
	align-items: center;
	border-radius: var(--radius-pill);
	padding: 8px 18px;
	font-weight: 700;
	font-size: 13px;
	border: 1.5px solid rgba(168, 85, 160, 0.22);
	background: #fff;
	color: #5C4A5E;
	transition: all 0.25s ease;
	cursor: pointer;
}

.qcms-chip:hover,
.qcms-chip.is-active {
	border-color: #A855A0;
	background: #A855A0;
	color: #fff;
}

/* -------------------------------------------------------------------------- */
/* Newsletter                                                                 */
/* -------------------------------------------------------------------------- */
.qcms-newsletter {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: center;
}

.qcms-newsletter .qcms-input--pill {
	flex: 1 1 180px;
	min-width: 0;
}

/* -------------------------------------------------------------------------- */
/* Misc content helpers                                                       */
/* -------------------------------------------------------------------------- */
.qcms-check {
	color: #7CB342;
	font-weight: 800;
	margin-right: 8px;
}

.qcms-check--purple {
	color: #A855A0;
}

.qcms-stat-n {
	font-weight: 800;
	font-size: 34px;
	color: #A855A0;
}

.qcms-gradient-text {
	background: linear-gradient(135deg, #A855A0, #7CB342);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.qcms-icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #A855A0, #C084C0);
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* 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;
	}

	.reveal-init {
		opacity: 1;
	}

	.reveal {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.announcement-track {
		animation: none;
	}

	.qcms-card:hover {
		transform: none;
	}
}

/* -------------------------------------------------------------------------- */
/* Responsive — 768px                                                         */
/* -------------------------------------------------------------------------- */
@media (min-width: 768px) {
	.qcms-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.qcms-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.qcms-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.qcms-form__row {
		grid-template-columns: repeat(2, 1fr);
	}

	.qcms-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* -------------------------------------------------------------------------- */
/* Responsive — 1024px                                                        */
/* -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
	.qcms-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.qcms-grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.qcms-header__nav {
		display: flex;
	}

	.qcms-header__actions {
		display: flex;
	}

	.qcms-header__toggle {
		display: none;
	}

	.qcms-mobile-menu {
		display: none !important;
	}

	.qcms-page-hero__inner {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	}

	.qcms-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1280px) {
	.qcms-header__phone {
		display: inline;
	}
}

/* -------------------------------------------------------------------------- */
/* Home page sections                                                         */
/* -------------------------------------------------------------------------- */
.qcms-badge {
	display: inline-block;
	background: var(--clr-purple-light);
	border: 1px solid var(--clr-purple-mid);
	border-radius: var(--radius-pill);
	padding: 7px 20px;
	color: var(--clr-purple);
	font-weight: 700;
	font-size: 13px;
}

.qcms-badge--light {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.qcms-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.qcms-btn-row--center {
	justify-content: center;
}

.qcms-home-hero {
	position: relative;
	overflow: hidden;
	background: var(--clr-lavender-bg);
	min-height: min(100vh, 900px);
	padding: clamp(40px, 6vw, 60px) 0 clamp(64px, 8vw, 80px);
}

.qcms-home-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.qcms-home-hero__blob--1 {
	width: 400px;
	height: 400px;
	background: var(--clr-purple-mid);
	opacity: 0.12;
	top: -80px;
	left: -80px;
}

.qcms-home-hero__blob--2 {
	width: 350px;
	height: 350px;
	background: var(--clr-green);
	opacity: 0.1;
	filter: blur(72px);
	bottom: -60px;
	left: 200px;
	animation-delay: 2s;
}

.qcms-home-hero__grid {
	display: grid;
	gap: clamp(32px, 5vw, 48px);
	align-items: center;
	position: relative;
	width: 100%;
}

.qcms-home-hero__grid > * {
	min-width: 0;
}

.qcms-home-hero__title {
	margin-top: 24px;
	font-weight: 800;
	font-size: clamp(32px, 7vw, 62px);
	color: var(--clr-text-dark);
	line-height: 1.12;
	overflow-wrap: break-word;
}

.qcms-home-hero__body {
	margin-top: 24px;
	font-size: clamp(16px, 2.5vw, 19px);
	color: var(--clr-text-body);
	line-height: 1.75;
	max-width: 500px;
}

.qcms-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 32px;
}

.qcms-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
	color: var(--clr-text-body);
}

.qcms-trust-item__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--clr-lavender-bg);
	color: var(--clr-purple);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

.qcms-home-hero__media {
	position: relative;
}

.qcms-home-hero__img-wrap {
	position: relative;
	border-radius: clamp(20px, 4vw, 32px);
	overflow: hidden;
	height: min(560px, 70vw);
	max-width: 100%;
	box-shadow: 0 20px 60px rgba(168, 85, 160, 0.2);
}

.qcms-home-hero__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qcms-home-hero__img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(168, 85, 160, 0.25), transparent 60%);
	pointer-events: none;
}

.qcms-home-hero__float {
	position: absolute;
	bottom: -16px;
	left: 12px;
	right: 12px;
	max-width: calc(100% - 24px);
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 20px;
	padding: 14px 18px;
	box-shadow: 0 8px 32px rgba(168, 85, 160, 0.15);
	font-weight: 600;
	font-size: clamp(13px, 2.5vw, 15px);
	color: var(--clr-text-dark);
	box-sizing: border-box;
}

.qcms-home-hero__float-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--clr-green-light);
	color: var(--clr-green-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.qcms-home-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	font-size: 28px;
	color: var(--clr-purple);
}

.marquee-bar {
	height: 64px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(90deg, #A855A0 0%, #C084C0 40%, #7CB342 70%, #A855A0 100%);
	background-size: 300% 100%;
	animation: gradientShift 6s linear infinite;
}

.marquee-bar__track {
	display: inline-flex;
	white-space: nowrap;
	animation: marqueeScroll 30s linear infinite;
	will-change: transform;
}

.marquee-bar__track span {
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding-right: 40px;
}

.qcms-home-about {
	display: grid;
	gap: clamp(32px, 5vw, 48px);
	align-items: center;
	width: 100%;
}

.qcms-home-about > * {
	min-width: 0;
}

.qcms-home-about__media {
	position: relative;
	overflow: visible;
	padding-bottom: 28px;
}

.qcms-home-about__img-wrap {
	border-radius: 28px;
	overflow: hidden;
	height: clamp(280px, 55vw, 500px);
	max-height: none;
	max-width: 100%;
	box-shadow: 0 12px 50px rgba(168, 85, 160, 0.18);
}

.qcms-home-about__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qcms-home-about__years {
	position: absolute;
	bottom: -20px;
	left: 8px;
	background: #fff;
	border-radius: 20px;
	padding: clamp(14px, 3vw, 20px) clamp(18px, 3vw, 28px);
	box-shadow: 0 10px 40px rgba(168, 85, 160, 0.18);
	max-width: calc(100% - 16px);
	box-sizing: border-box;
}

.qcms-home-about__years-n {
	font-weight: 800;
	font-size: 42px;
	color: var(--clr-purple);
	line-height: 1;
}

.qcms-home-about__years-l {
	font-weight: 600;
	font-size: 14px;
	color: var(--clr-text-body);
	margin-top: 4px;
}

.qcms-home-about__active {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	font-size: 12px;
	color: var(--clr-green);
	font-weight: 700;
}

.qcms-pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--clr-green);
	animation: softPulse 1.8s ease-in-out infinite;
}

.qcms-mini-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(12px, 3vw, 20px);
	margin-top: 32px;
}

.qcms-mini-stat {
	background: #fff;
	border-radius: 20px;
	padding: clamp(14px, 3vw, 20px) clamp(14px, 3vw, 24px);
	box-shadow: 0 4px 20px rgba(168, 85, 160, 0.09);
	border-left: 4px solid var(--clr-purple);
	min-width: 0;
}

.qcms-mini-stat__n {
	font-weight: 800;
	font-size: clamp(24px, 5vw, 34px);
	color: var(--clr-purple);
	overflow-wrap: break-word;
}

.qcms-mini-stat__l {
	font-weight: 600;
	font-size: 13px;
	color: var(--clr-text-body);
	margin-top: 4px;
}

.qcms-service-card {
	overflow: hidden;
}

.qcms-service-card__media {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.qcms-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease-out);
}

.qcms-service-card:hover .qcms-service-card__media img {
	transform: scale(1.05);
}

.qcms-service-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(168, 85, 160, 0.28), transparent);
	pointer-events: none;
}

.qcms-service-card__body {
	padding: clamp(20px, 3vw, 28px);
}

.qcms-icon-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--clr-lavender-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.qcms-service-card__body h3 {
	margin-top: 16px;
	font-weight: 700;
	font-size: 20px;
	color: var(--clr-text-dark);
}

.qcms-service-card__body p {
	margin-top: 8px;
	font-size: 15px;
	color: var(--clr-text-body);
	line-height: 1.7;
}

.qcms-stats-bar {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #A855A0 0%, #C084C0 50%, #7CB342 100%);
	padding: clamp(56px, 8vw, 88px) 0;
}

.qcms-stats-bar__blob {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	filter: blur(60px);
	pointer-events: none;
}

.qcms-stats-bar__blob--1 { top: -60px; left: -40px; }
.qcms-stats-bar__blob--2 { bottom: -60px; right: -40px; animation-delay: 2s; }

.qcms-stats-bar__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 4vw, 24px);
	text-align: center;
	position: relative;
	width: 100%;
}

.qcms-stats-bar__grid > * {
	min-width: 0;
}

.qcms-stat__n {
	font-weight: 800;
	font-size: clamp(36px, 5vw, 58px);
	color: #fff;
	line-height: 1;
}

.qcms-stat__l {
	margin-top: 8px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.82);
}

.qcms-stat--border {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.qcms-step-card {
	text-align: center;
	padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
}

.qcms-step-card__n {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, #A855A0, #C084C0);
	color: #fff;
	font-weight: 800;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(168, 85, 160, 0.3);
}

.qcms-step-card h3 {
	margin-top: 20px;
	font-weight: 700;
	font-size: 21px;
}

.qcms-step-card p {
	margin-top: 12px;
	font-size: 15px;
	color: var(--clr-text-body);
	line-height: 1.75;
}

.qcms-step-card__img {
	margin-top: 20px;
	border-radius: 16px;
	overflow: hidden;
	height: 180px;
}

.qcms-step-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qcms-testimonials {
	position: relative;
	overflow: hidden;
}

.qcms-testimonials__blob {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: var(--clr-purple-mid);
	opacity: 0.07;
	filter: blur(90px);
	top: -200px;
	right: -200px;
	animation-delay: 3s;
	pointer-events: none;
}

.qcms-testimonial {
	padding: clamp(24px, 3vw, 36px);
}

.qcms-testimonial__stars {
	color: #F59E0B;
	font-size: 18px;
	letter-spacing: 2px;
}

.qcms-testimonial__quote-mark {
	font-weight: 800;
	font-size: 88px;
	color: var(--clr-purple-light);
	line-height: 0.6;
	margin: 14px 0 10px;
}

.qcms-testimonial__quote {
	font-style: italic;
	font-size: 16px;
	color: var(--clr-text-body);
	line-height: 1.8;
}

.qcms-testimonial__divider {
	height: 1px;
	background: var(--clr-purple-light);
	margin: 24px 0;
}

.qcms-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.qcms-testimonial__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #A855A0, #7CB342);
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qcms-testimonial__name {
	font-weight: 700;
	font-size: 15px;
}

.qcms-testimonial__relation {
	font-size: 13px;
	color: var(--clr-purple);
}

.qcms-legacy-banner {
	position: relative;
	overflow: hidden;
	min-height: clamp(420px, 70vw, 540px);
}

.qcms-legacy-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qcms-legacy-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(45, 27, 46, 0.86) 0%, rgba(168, 85, 160, 0.45) 55%, transparent 100%);
}

.qcms-legacy-banner__content {
	position: relative;
	max-width: 580px;
	width: 100%;
	padding: clamp(56px, 10vw, 88px) clamp(16px, 4vw, 48px);
	box-sizing: border-box;
}

.qcms-legacy-banner__content h2 {
	margin-top: 16px;
	font-weight: 800;
	font-size: clamp(32px, 5vw, 50px);
	color: #fff;
	line-height: 1.14;
}

.qcms-legacy-banner__content p {
	margin-top: 20px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.87);
	line-height: 1.75;
	max-width: 500px;
}

.qcms-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.qcms-pill {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--radius-pill);
	padding: 8px 22px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}

.qcms-home-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(135deg, #A855A0 0%, #C084C0 40%, #7CB342 100%);
	padding: clamp(64px, 10vw, 96px) clamp(16px, 4vw, 48px);
}

.qcms-home-cta__blob {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	filter: blur(80px);
	pointer-events: none;
}

.qcms-home-cta__blob--1 {
	width: 500px;
	height: 500px;
	top: -120px;
	left: -120px;
}

.qcms-home-cta__blob--2 {
	width: 400px;
	height: 400px;
	top: 60px;
	right: -60px;
	animation-delay: 2s;
}

.qcms-home-cta__inner {
	position: relative;
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.qcms-home-cta__inner h2 {
	margin-top: 20px;
	font-weight: 800;
	font-size: clamp(32px, 5vw, 50px);
	color: #fff;
	line-height: 1.15;
}

.qcms-home-cta__inner p {
	margin-top: 20px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn-secondary--on-dark {
	color: #fff !important;
	border-color: #fff !important;
	background: transparent !important;
}

.btn-secondary--on-dark:hover {
	background: rgba(255, 255, 255, 0.12) !important;
}

.btn-primary--sm {
	padding: 10px 24px !important;
	font-size: 14px !important;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (min-width: 1024px) {
	.qcms-home-hero__grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
		gap: 48px;
	}

	.qcms-home-hero__float {
		right: auto;
		left: 24px;
		bottom: -24px;
		max-width: none;
		padding: 18px 24px;
	}

	.qcms-home-about {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 64px;
	}

	.qcms-home-about__years {
		left: 0;
		bottom: -28px;
	}

	.qcms-stats-bar__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* -------------------------------------------------------------------------- */
/* Responsive polish — mobile first overrides                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	:root {
		--header-h: 64px;
		--announce-h: 32px;
	}

	.qcms-section--sm {
		padding: 36px 0;
	}

	.qcms-section--lg {
		padding: 56px 0;
	}

	.qcms-h2 {
		font-size: clamp(24px, 7vw, 32px);
	}

	.qcms-lead {
		font-size: 16px;
	}

	.qcms-body:not(body) {
		font-size: 15px;
	}

	.qcms-header__inner {
		gap: 10px;
	}

	.qcms-btn-row {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.qcms-btn-row .btn-primary,
	.qcms-btn-row .btn-secondary,
	.qcms-btn-row .btn-ghost-white {
		width: 100%;
	}

	.qcms-trust-row {
		gap: 14px;
		margin-top: 24px;
	}

	.qcms-home-hero__scroll {
		display: none;
	}

	.qcms-home-hero__media {
		padding-bottom: 20px;
	}

	.qcms-mini-stats {
		grid-template-columns: 1fr 1fr;
	}

	.qcms-stat--border:nth-child(2n) {
		border-right: none;
	}

	.qcms-stat--border:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding-bottom: 16px;
	}

	.qcms-testimonial__quote-mark {
		font-size: 64px;
	}

	.qcms-legacy-banner__overlay {
		background: linear-gradient(to top, rgba(45, 27, 46, 0.9) 0%, rgba(168, 85, 160, 0.55) 55%, rgba(45, 27, 46, 0.35) 100%);
	}

	.qcms-pill-row {
		gap: 8px;
	}

	.qcms-pill {
		padding: 7px 14px;
		font-size: 12px;
	}

	.qcms-home-cta__inner p {
		font-size: 16px;
	}

	.qcms-footer {
		padding: 48px 0 28px;
	}

	.qcms-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.qcms-faq-item {
		padding: 16px 18px;
	}

	.qcms-faq-item__question {
		font-size: 15px;
	}

	.qcms-blog-card__body {
		padding: 20px;
	}

	.qcms-page-hero__title {
		font-size: clamp(28px, 8vw, 40px);
	}

	.qcms-page-hero__tagline {
		font-size: 16px;
	}

	.qcms-closing-cta {
		padding: 56px clamp(16px, 4vw, 32px);
	}

	.marquee-bar {
		height: 52px;
	}

	.marquee-bar__track span {
		font-size: 13px;
		padding-right: 28px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.qcms-btn-row {
		flex-direction: row;
		align-items: center;
	}

	.qcms-btn-row .btn-primary,
	.qcms-btn-row .btn-secondary,
	.qcms-btn-row .btn-ghost-white {
		width: auto;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.qcms-home-hero__grid,
	.qcms-home-about {
		gap: 40px;
	}

	.qcms-home-hero__img-wrap {
		height: min(420px, 50vw);
	}

	.qcms-home-about__img-wrap {
		height: clamp(320px, 40vw, 420px);
	}
}
