/**
 * Quotewyze Landing — v6 (v2-bullets redesign, teal + #dc3f62 CTA).
 *
 * Palette (per spec 2026-05-19):
 *   #0a4d68 — deep teal: nav, dark sections, headings, body emphasis
 *   #00b4d8 — light teal: accent icons, borders, eyebrow dots
 *   #dc3f62 — pink-red: CTA buttons, highlighted words in headlines,
 *             feature-highlight border, pull-quote left border,
 *             pricing featured-card border, "Most popular" badge,
 *             transition-band accent text, quote-card Accept button
 *   #f0fafa — pale teal page bg + soft section bg
 *   #b3dce8 — light teal borders
 *   #4a6d7c — secondary text
 *   #1a2a35 — body text default
 */

* { box-sizing: border-box; margin: 0; padding: 0; }

.qw {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #f0fafa;
	color: #1a2a35;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* v6.1: contained card layout — max 1200px, centred on the page. */
	max-width: 1200px;
	margin: 32px auto;
	box-shadow: 0 8px 40px rgba(10, 77, 104, 0.08);
	border-radius: 10px;
	overflow: hidden;
}

/* v6.1: shell behind the contained card — keeps the page bg consistent when the */
/* card is narrower than the viewport, and gives the card room to breathe.        */
body.home,
body.blog,
body.page-id-14 {
	background: #e6f3f5;
}

/* ------------------------------------------------------------ Nav ------------------------------------------------------------ */
.qw nav {
	background: #0a4d68;
	padding: 16px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 10px 10px 0 0;
}
.qw .logo { display: flex; align-items: center; gap: 8px; }
.qw .logomark {
	width: 28px; height: 28px;
	background: #00b4d8;
	border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
}
.qw .logomark i { font-size: 14px; color: #fff; }
.qw .logotype { font-family: 'Playfair Display', serif; font-size: 16px; color: #fff; font-weight: 500; }
.qw .navlinks { display: flex; gap: 18px; align-items: center; }
.qw .navlinks a { color: rgba(255,255,255,0.55); font-size: 12px; cursor: pointer; text-decoration: none; transition: color .15s; }
.qw .navlinks a:hover { color: #fff; }
.qw .navcta {
	background: #dc3f62;
	color: #fff; border: none;
	padding: 7px 16px;
	border-radius: 5px; font-size: 12px; font-weight: 500;
	cursor: pointer; font-family: 'DM Sans', sans-serif;
	text-decoration: none;
	transition: filter .15s;
}
.qw .navcta:hover { filter: brightness(0.92); }

/* ------------------------------------------------------------ Hero ------------------------------------------------------------ */
.qw .hero {
	background: #fff;
	padding: 56px 48px 52px;
	display: grid; grid-template-columns: minmax(0, 520px) 380px; gap: 56px; align-items: start;
	border-top: 0.5px solid #e0f0f5;
	justify-content: center;
}
.qw .hero > div:first-child { max-width: 520px; }
.qw .badge {
	display: inline-flex; align-items: center; gap: 5px;
	border: 0.5px solid #b3dce8; background: #f0fafa;
	border-radius: 4px; padding: 3px 10px; margin-bottom: 14px;
}
.qw .badge-dot { width: 5px; height: 5px; background: #00b4d8; border-radius: 50%; }
.qw .badge span { font-size: 10px; color: #0a4d68; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.qw h1 {
	font-family: 'Playfair Display', serif;
	font-size: 30px; font-weight: 500;
	line-height: 1.2; color: #0a4d68;
	margin-bottom: 12px; letter-spacing: -0.3px;
}
.qw h1 em { font-style: normal; color: #dc3f62; }
.qw .hero-sub { font-size: 13px; color: #4a6d7c; line-height: 1.8; margin-bottom: 16px; }
.qw .hero-bullets {
	list-style: none; margin-bottom: 20px;
	border: 0.5px solid #b3dce8; border-radius: 8px; overflow: hidden;
}
.qw .hero-bullets li {
	display: flex; align-items: flex-start; gap: 8px;
	padding: 9px 14px; background: #fff;
	border-bottom: 0.5px solid #e8f5f9;
	font-size: 12px; color: #4a6d7c; line-height: 1.5;
}
.qw .hero-bullets li:last-child { border-bottom: none; }
.qw .hero-bullets li i { font-size: 14px; color: #00b4d8; margin-top: 1px; flex-shrink: 0; }
.qw .hero-bullets li strong { color: #0a4d68; font-weight: 500; }
.qw .btns { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.qw .btn-p {
	background: #dc3f62; color: #fff; border: none;
	padding: 10px 18px; border-radius: 5px;
	font-size: 12px; font-weight: 500; cursor: pointer;
	font-family: 'DM Sans', sans-serif; text-decoration: none;
	display: inline-flex; align-items: center; gap: 6px;
	transition: filter .15s;
}
.qw .btn-p:hover { filter: brightness(0.92); }
.qw .btn-g {
	background: transparent; color: #0a4d68;
	border: 0.5px solid #b3dce8;
	padding: 10px 18px; border-radius: 5px;
	font-size: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif;
	text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
	transition: background .15s, border-color .15s;
}
.qw .btn-g:hover { background: #f0fafa; border-color: #00b4d8; }
.qw .trust {
	display: grid; grid-template-columns: 1fr 1fr 1fr;
	border: 0.5px solid #b3dce8; border-radius: 6px; overflow: hidden;
}
.qw .trust-i { padding: 10px; text-align: center; background: #f0fafa; border-right: 0.5px solid #b3dce8; }
.qw .trust-i:last-child { border-right: none; }
.qw .trust-n { font-size: 17px; font-weight: 500; color: #0a4d68; font-family: 'Playfair Display', serif; }
.qw .trust-l { font-size: 10px; color: #4a6d7c; margin-top: 1px; }

/* ------------------------------------------------------------ Quote card ------------------------------------------------------------ */
.qw .qcard { border: 0.5px solid #b3dce8; border-radius: 10px; overflow: hidden; background: #fff; }
.qw .qcard-h { background: #0a4d68; padding: 13px 16px; display: flex; justify-content: space-between; }
.qw .qcard-co { font-size: 9px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.qw .qcard-ev { font-size: 13px; color: #fff; font-weight: 500; font-family: 'Playfair Display', serif; }
.qw .qcard-ref { text-align: right; }
.qw .qcard-ref span { font-size: 9px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 2px; }
.qw .qcard-ref strong { font-size: 11px; color: #fff; }
.qw .qcard-client { padding: 10px 16px; border-bottom: 0.5px solid #e0f0f5; display: grid; grid-template-columns: 1fr 1fr; }
.qw .cl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px; color: #4a6d7c; margin-bottom: 2px; }
.qw .cn { font-size: 12px; font-weight: 500; color: #0a4d68; }
.qw .ce { font-size: 10px; color: #4a6d7c; }
.qw .qcard-items { padding: 2px 16px 0; }
.qw .qcard-items table { width: 100%; font-size: 11px; border-collapse: collapse; }
.qw .qcard-items th { padding: 7px 0 5px; font-size: 9px; color: #4a6d7c; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; border-bottom: 0.5px solid #e0f0f5; text-align: left; }
.qw .qcard-items th:last-child { text-align: right; }
.qw .qcard-items td { padding: 7px 0; border-bottom: 0.5px solid #e0f0f5; color: #0a3d52; line-height: 1.4; }
.qw .qcard-items td:last-child { text-align: right; font-weight: 500; color: #0a4d68; }
.qw .qcard-items tr:last-child td { border-bottom: none; }
.qw .qcard-total { margin: 0 16px; border-top: 0.5px solid #b3dce8; padding: 9px 0; display: flex; justify-content: space-between; align-items: center; }
.qw .qcard-tl { font-size: 12px; font-weight: 500; color: #0a4d68; }
.qw .qcard-ta { font-size: 16px; font-weight: 500; color: #00b4d8; font-family: 'Playfair Display', serif; }
.qw .qcard-actions { padding: 10px 16px; background: #f0fafa; border-top: 0.5px solid #b3dce8; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.qw .qacc {
	background: #dc3f62; color: #fff; border: none;
	padding: 8px; border-radius: 5px; font-size: 11px; font-weight: 500;
	cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.qw .qdec {
	background: transparent; color: #0a4d68;
	border: 0.5px solid #b3dce8;
	padding: 8px; border-radius: 5px; font-size: 11px;
	cursor: pointer; font-family: 'DM Sans', sans-serif;
}

/* ------------------------------------------------------------ Section primitives ------------------------------------------------------------ */
.qw .section { padding: 56px 48px; }
.qw .section-white { background: #fff; border-top: 0.5px solid #e0f0f5; }
.qw .section-light { background: #f0fafa; border-top: 0.5px solid #b3dce8; }
.qw .section-dark { background: #0a4d68; border-top: 0.5px solid #0a4d68; }
.qw .section-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #4a6d7c; margin-bottom: 8px; max-width: 720px; }
.qw .section-label-light { color: rgba(255,255,255,0.4); }
.qw h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; color: #0a4d68; margin-bottom: 12px; letter-spacing: -0.2px; line-height: 1.25; max-width: 720px; }
.qw h2.on-dark { color: #fff; }
/* v6.1: cap stand-alone body paragraphs (inside .section directly, not in two-col cards) at 720px. */
.qw .section > .body-text { max-width: 720px; }
.qw .section-dark p { max-width: 720px; }

.qw .pull-quote { border-left: 3px solid #dc3f62; padding: 10px 16px; margin: 16px 0; background: #f0fafa; border-radius: 0 6px 6px 0; }
.qw .pull-quote p { font-family: 'Playfair Display', serif; font-size: 15px; color: #0a4d68; line-height: 1.5; font-style: italic; }

.qw .body-text { font-size: 13px; color: #4a6d7c; line-height: 1.8; margin-bottom: 12px; }
.qw .body-text:last-child { margin-bottom: 0; }
.qw .body-text strong { color: #0a4d68; font-weight: 500; }

.qw .check-list { list-style: none; margin: 12px 0; padding: 0; }
.qw .check-list li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 13px; color: #4a6d7c; border-bottom: 0.5px solid #e8f5f9; line-height: 1.5; }
.qw .check-list li:last-child { border-bottom: none; }
.qw .check-list li i { font-size: 14px; color: #00b4d8; flex-shrink: 0; margin-top: 1px; }
.qw .check-list li strong { color: #0a4d68; font-weight: 500; }

.qw .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

.qw .shame-box { background: #0a4d68; border-radius: 8px; padding: 20px; margin-top: 16px; }
.qw .shame-box p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.75; }
.qw .shame-box strong { color: #fff; font-weight: 500; }
.qw .shame-box .shame-eyebrow { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.qw .shame-box ul { list-style: none; margin: 0; padding: 0; border: none; }
.qw .shame-box ul li { border-bottom: 0.5px solid rgba(255,255,255,0.1); padding: 7px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.qw .shame-box ul li:last-child { border-bottom: none; }
.qw .shame-box ul li i { color: #00b4d8; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.qw .shame-box ul li span { color: rgba(255,255,255,0.75); font-size: 12px; }

/* ------------------------------------------------------------ Transition band ------------------------------------------------------------ */
.qw .transition-band { background: #0a4d68; padding: 36px 48px; text-align: center; }
.qw .transition-band p { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; line-height: 1.35; }
.qw .transition-band em { font-style: normal; color: #dc3f62; }

/* ------------------------------------------------------------ Feature grid ------------------------------------------------------------ */
.qw .feat-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px; }
.qw .feat { background: #fff; border: 0.5px solid #b3dce8; border-radius: 8px; padding: 16px; }
.qw .feat-icon { width: 30px; height: 30px; background: #e8f7fb; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.qw .feat-icon i { font-size: 15px; color: #0a4d68; }
.qw .feat h3 { font-size: 12px; font-weight: 500; color: #0a4d68; margin-bottom: 5px; line-height: 1.3; }
.qw .feat p { font-size: 11px; color: #4a6d7c; line-height: 1.6; }
.qw .feat-highlight { border: 1.5px solid #dc3f62; }

/* ------------------------------------------------------------ Pricing ------------------------------------------------------------ */
.qw .pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px; }
.qw .tier { background: #f0fafa; border: 0.5px solid #b3dce8; border-radius: 10px; padding: 18px; position: relative; }
.qw .tier.pop { background: #fff; border: 1.5px solid #dc3f62; }
.qw .tier-badge {
	position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
	background: #dc3f62; color: #fff;
	font-size: 9px; padding: 2px 10px;
	border-radius: 20px; font-weight: 500; white-space: nowrap;
}
.qw .tier-name { font-size: 10px; font-weight: 500; color: #0a4d68; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.qw .tier-price { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; color: #0a4d68; margin-bottom: 1px; }
.qw .tier-period { font-size: 10px; color: #4a6d7c; margin-bottom: 14px; }
.qw .tier-support { background: #e8f7fb; border-radius: 4px; padding: 5px 8px; font-size: 10px; color: #0a4d68; margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.qw .tier-feats { list-style: none; margin-bottom: 14px; padding: 0; }
.qw .tier-feats li { display: flex; align-items: flex-start; gap: 6px; padding: 4px 0; font-size: 11px; color: #4a6d7c; border-bottom: 0.5px solid #e0f0f5; line-height: 1.4; }
.qw .tier-feats li:last-child { border-bottom: none; }
.qw .tier-feats li i { font-size: 12px; color: #00b4d8; flex-shrink: 0; margin-top: 1px; }
.qw .tier-feats li.na { color: #b3dce8; }
.qw .tier-feats li.na i { color: #b3dce8; }
.qw .tier-btn {
	width: 100%; padding: 9px; border-radius: 5px;
	font-size: 11px; font-weight: 500; cursor: pointer;
	font-family: 'DM Sans', sans-serif;
	border: 0.5px solid #0a4d68;
	background: transparent; color: #0a4d68;
	text-decoration: none; display: inline-block; text-align: center;
	transition: background .15s, color .15s;
}
.qw .tier-btn:hover { background: #f0fafa; }
.qw .tier.pop .tier-btn { background: #dc3f62; color: #fff; border-color: #dc3f62; }
.qw .tier.pop .tier-btn:hover { filter: brightness(0.92); background: #dc3f62; }
.qw .price-note { font-size: 11px; color: #4a6d7c; text-align: center; margin-top: 12px; line-height: 1.6; }

/* ------------------------------------------------------------ Final CTA ------------------------------------------------------------ */
.qw .final-cta { background: #0a4d68; padding: 56px 48px; text-align: center; }
.qw .final-cta h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.qw .final-cta h2 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.qw .final-cta p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 22px; line-height: 1.75; max-width: 460px; margin-left: auto; margin-right: auto; }
.qw .final-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.qw .final-btns .btn-p { background: #dc3f62; padding: 12px 24px; font-size: 13px; }
.qw .btn-ghost {
	background: transparent; color: rgba(255,255,255,0.6); border: none;
	padding: 12px 24px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif;
	text-decoration: underline; text-underline-offset: 3px;
}
.qw .btn-ghost:hover { color: #fff; }

/* ------------------------------------------------------------ Site footer ------------------------------------------------------------ */
.qw .qw-site-footer {
	background: #0a4d68;
	color: rgba(255,255,255,0.7);
	padding: 36px 48px 28px;
}
.qw .qw-site-footer__inner {
	display: flex; flex-direction: column; gap: 18px;
}
.qw .qw-site-footer__top {
	display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 0.5px solid rgba(255,255,255,0.12);
}
.qw .qw-site-footer__brand {
	display: flex; align-items: center; gap: 8px;
	color: #fff; text-decoration: none;
}
.qw .qw-site-footer__logomark {
	width: 28px; height: 28px;
	background: #00b4d8; border-radius: 6px;
	display: flex; align-items: center; justify-content: center;
}
.qw .qw-site-footer__logomark i { font-size: 14px; color: #fff; }
.qw .qw-site-footer__logotype { font-family: 'Playfair Display', serif; font-size: 16px; color: #fff; font-weight: 500; }
.qw .qw-site-footer__links {
	display: flex; flex-wrap: wrap; gap: 18px;
}
.qw .qw-site-footer__links a {
	color: rgba(255,255,255,0.6); font-size: 12px; text-decoration: none;
	transition: color .15s;
}
.qw .qw-site-footer__links a:hover { color: #fff; }
.qw .qw-site-footer__bottom {
	display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.qw .qw-site-footer__email {
	color: #00b4d8; font-size: 12px; text-decoration: none;
}
.qw .qw-site-footer__email:hover { color: #fff; }
.qw .qw-site-footer__copy {
	font-size: 11px; color: rgba(255,255,255,0.45);
}

/* ------------------------------------------------------------ Default page template (page.php) ------------------------------------------------------------ */
/* For /contact/, /privacy-policy/, /refund_returns/, /sample-page/, and any text-only page. */
/* Shortcode-only pages get .qw-page__content--full and skip the title + 720px constraint. */
.qw .qw-page {
	background: #f0fafa;
	padding: 48px 48px 60px;
}
.qw .qw-page__header {
	max-width: 720px;
	margin: 0 auto 28px;
	text-align: left;
}
.qw .qw-page__title {
	font-family: 'Playfair Display', serif;
	font-size: 32px; font-weight: 500;
	color: #0a4d68;
	letter-spacing: -0.3px; line-height: 1.2;
	margin: 0;
}
.qw .qw-page__content {
	max-width: 720px;
	margin: 0 auto;
	font-family: 'DM Sans', -apple-system, sans-serif;
	font-size: 14px; line-height: 1.7; color: #4a6d7c;
}
.qw .qw-page__content--full {
	max-width: none;
}
/* Default styling for elements inside .qw-page__content (mostly Contact + Privacy). */
.qw .qw-page__content h1,
.qw .qw-page__content h2,
.qw .qw-page__content h3,
.qw .qw-page__content h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 500; color: #0a4d68;
	letter-spacing: -0.2px; line-height: 1.25;
	margin: 28px 0 12px;
}
.qw .qw-page__content h1 { font-size: 26px; margin-top: 0; }
.qw .qw-page__content h2 { font-size: 22px; }
.qw .qw-page__content h3 { font-size: 18px; }
.qw .qw-page__content h4 { font-size: 15px; }
.qw .qw-page__content p { margin: 0 0 14px; }
.qw .qw-page__content p:last-child { margin-bottom: 0; }
.qw .qw-page__content a { color: #dc3f62; text-decoration: underline; text-underline-offset: 2px; }
.qw .qw-page__content a:hover { color: #b8294a; }
.qw .qw-page__content strong { color: #0a4d68; font-weight: 500; }
.qw .qw-page__content ul,
.qw .qw-page__content ol { margin: 0 0 14px 22px; padding: 0; }
.qw .qw-page__content li { margin: 0 0 6px; }
.qw .qw-page__content blockquote {
	border-left: 3px solid #dc3f62;
	background: #f0fafa;
	margin: 16px 0;
	padding: 12px 18px;
	border-radius: 0 6px 6px 0;
	font-family: 'Playfair Display', serif;
	color: #0a4d68; font-style: italic;
}
.qw .qw-page__content hr {
	border: none; border-top: 0.5px solid #b3dce8; margin: 24px 0;
}
.qw .qw-page__content img { max-width: 100%; height: auto; border-radius: 8px; }
.qw .qw-page__content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.qw .qw-page__content th,
.qw .qw-page__content td { padding: 10px 12px; border-bottom: 0.5px solid #b3dce8; text-align: left; font-size: 13px; }
.qw .qw-page__content th { background: #f0fafa; color: #0a4d68; font-weight: 500; }
.qw .qw-page__content .button,
.qw .qw-page__content button:not(.qacc):not(.qdec):not(.tier-btn):not(.btn-p):not(.btn-g):not(.btn-ghost):not(.navcta) {
	display: inline-block;
	background: #dc3f62; color: #fff;
	padding: 10px 18px; border: none; border-radius: 5px;
	font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
	text-decoration: none; cursor: pointer;
	transition: filter .15s;
}
.qw .qw-page__content .button:hover,
.qw .qw-page__content button:not(.qacc):not(.qdec):not(.tier-btn):not(.btn-p):not(.btn-g):not(.btn-ghost):not(.navcta):hover {
	filter: brightness(0.92);
}

/* Workspace shortcode brand bar — flatten its top corners so it integrates with site chrome above it. */
.qw .qw-ws-brand-bar { border-radius: 0; margin-top: 0; }
.qw .qw-ws-nav-bar { border-radius: 0; border-left: none; border-right: none; }

/* ------------------------------------------------------------ Responsive ------------------------------------------------------------ */
/* v6.1: tablet — keep contained but drop side padding so content has room. */
@media (max-width: 1024px) {
	.qw { margin: 16px auto; border-radius: 8px; }
	.qw nav { padding: 14px 32px; }
	.qw .hero { padding: 44px 32px; gap: 36px; }
	.qw .section { padding: 44px 32px; }
	.qw .transition-band { padding: 28px 32px; }
	.qw .final-cta { padding: 48px 32px; }
	.qw .qw-site-footer { padding: 32px 32px 24px; }
	.qw .qw-page { padding: 40px 32px 56px; }
}

/* v6.1: mobile — single column, 20px side padding. */
@media (max-width: 880px) {
	.qw { margin: 0 auto; border-radius: 0; box-shadow: none; }
	body.home, body.blog, body.page-id-14 { background: #f0fafa; }
	.qw nav { border-radius: 0; padding: 12px 20px; }
	.qw .hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px; }
	.qw .hero > div:first-child { max-width: 100%; }
	.qw .qcard { max-width: 380px; margin: 0 auto; }
	.qw .two-col { grid-template-columns: 1fr; gap: 20px; }
	.qw .feat-grid { grid-template-columns: 1fr 1fr; }
	.qw .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
	.qw .section { padding: 36px 20px; }
	.qw .transition-band { padding: 26px 20px; }
	.qw .transition-band p { font-size: 18px; }
	.qw .final-cta { padding: 40px 20px; border-radius: 0; }
	.qw .qw-site-footer { padding: 28px 20px 22px; }
	.qw .qw-site-footer__top { flex-direction: column; align-items: flex-start; gap: 14px; }
	.qw .qw-site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
	.qw .qw-page { padding: 32px 20px 48px; }
	.qw .qw-page__title { font-size: 26px; }
}

@media (max-width: 560px) {
	.qw nav { padding: 12px 18px; flex-wrap: wrap; gap: 10px; }
	.qw .navlinks { gap: 12px; }
	.qw .navlinks a { display: none; }
	.qw .navlinks .navcta { display: inline-flex; }
	.qw .feat-grid { grid-template-columns: 1fr; }
	.qw h1 { font-size: 26px; }
	.qw h2 { font-size: 20px; }
	.qw .final-cta h2 { font-size: 22px; }
}

/* ============================================================
   GHOST SECTION — "They said I'll get back to you"
   Used by template-parts/section-ghost.php (homepage only).
   Lives between the Features grid and the Dark band section.
   ============================================================ */
.qw-ghost-section {
	background: #0a4d68;
	padding: 80px 24px;
	position: relative;
	overflow: hidden;
}
.qw-ghost-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(0,180,216,0.08) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(220,63,98,0.06) 0%, transparent 50%);
	pointer-events: none;
}
.qw-ghost-inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.qw-ghost-label {
	font-size: 11px;
	font-weight: 500;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.qw-ghost-label::before {
	content: '';
	display: block;
	width: 24px;
	height: 1px;
	background: #00b4d8;
}
.qw-ghost-headline {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 36px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 28px;
	letter-spacing: -.5px;
}
.qw-ghost-headline em {
	color: #dc3f62;
	font-style: normal;
}
.qw-ghost-story {
	font-size: 15px;
	color: rgba(255,255,255,0.65);
	line-height: 1.85;
	margin-bottom: 32px;
}
.qw-ghost-story p { margin-bottom: 14px; }
.qw-ghost-story p:last-child { margin-bottom: 0; }
.qw-ghost-story strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.qw-ghost-divider {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, #dc3f62, transparent);
	margin: 28px 0;
}
.qw-ghost-turn {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.5;
	margin-bottom: 32px;
}
.qw-ghost-stats {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1px;
	background: rgba(255,255,255,0.08);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 32px;
}
.qw-ghost-stat {
	background: #0a4d68;
	padding: 20px 16px;
	text-align: center;
}
.qw-ghost-stat-val {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 28px;
	font-weight: 900;
	color: #00b4d8;
	margin-bottom: 4px;
	line-height: 1;
}
.qw-ghost-stat-label {
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	line-height: 1.5;
}
.qw-ghost-pull {
	border-left: 3px solid #dc3f62;
	padding: 16px 20px;
	background: rgba(220,63,98,0.08);
	border-radius: 0 8px 8px 0;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.5;
	margin-bottom: 32px;
	font-style: italic;
}
.qw-ghost-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 32px;
}
.qw-ghost-feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255,255,255,0.05);
	border: 0.5px solid rgba(255,255,255,0.08);
	border-radius: 10px;
	padding: 14px 16px;
}
.qw-ghost-feature-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
	margin-top: 2px;
}
.qw-gfi-teal  { background: rgba(0,180,216,0.15); color: #00b4d8; }
.qw-gfi-pink  { background: rgba(220,63,98,0.15); color: #dc3f62; }
.qw-gfi-amber { background: rgba(239,159,39,0.15); color: #ef9f27; }
.qw-ghost-feature-title {
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 4px;
}
.qw-ghost-feature-desc {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	line-height: 1.65;
}
.qw-ghost-cta { text-align: center; }
.qw-ghost-cta-line {
	font-size: 13px;
	color: rgba(255,255,255,0.45);
	margin-bottom: 16px;
}
.qw-ghost-btn {
	display: inline-block;
	background: #dc3f62;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 32px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s;
}
.qw-ghost-btn:hover { background: #c0374f; }
@media (max-width: 600px) {
	.qw-ghost-headline { font-size: 26px; }
	.qw-ghost-stats { grid-template-columns: 1fr; gap: 1px; }
	.qw-ghost-turn { font-size: 17px; }
}

/* ============================================================
   FEATURES — grouped grid (replaces old .feat-grid)
   Used by front-page.php #features section.
   ============================================================ */
.qw-fgrp { margin-bottom: 36px; }
.qw-fgrp:last-of-type { margin-bottom: 28px; }
.qw-fgrp-label {
	font-size: 10.5px;
	font-weight: 700;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding-bottom: 8px;
	margin-bottom: 14px;
	border-bottom: 1px solid #c8e0e8;
}
.qw-fgrp-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.qw-fitem {
	background: #fff;
	border: 1px solid #c8e0e8;
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13px;
	color: #1a2a35;
	line-height: 1.5;
	position: relative;
}
.qw-fitem i {
	color: #00b4d8;
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}
.qw-fitem strong { color: #0a4d68; font-weight: 600; }
.qw-fitem-hl {
	background: linear-gradient(135deg, rgba(220,63,98,0.06), rgba(0,180,216,0.04));
	border: 1.5px solid #dc3f62;
	box-shadow: 0 4px 14px rgba(220,63,98,0.08);
}
.qw-fitem-hl i { color: #dc3f62; }
.qw-fitem-hl strong { color: #dc3f62; }
.qw-fitem-tag {
	position: absolute;
	top: -8px;
	right: 12px;
	background: #dc3f62;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 10px;
}
.qw-feat-strip {
	background: #0a4d68;
	color: rgba(255,255,255,0.78);
	border-radius: 10px;
	padding: 18px 24px;
	text-align: center;
	font-size: 14px;
	line-height: 1.55;
	margin-top: 12px;
}
.qw-feat-strip strong { color: #00b4d8; font-weight: 600; }

/* ============================================================
   OBJECTION HANDLER — expanded accordion (8 Q&A, teaser + answer + pull quote)
   Used by front-page.php #objections section.
   ============================================================ */
.qw-obj-section { background: #f8fcfe; }
.qw-obj-section > .qw-obj { max-width: 720px; }
.qw-obj { display: flex; flex-direction: column; gap: 8px; }
.qw-obj-item {
	background: #fff;
	border: 1px solid #c8e0e8;
	border-radius: 10px;
	padding: 0;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.qw-obj-item:hover { border-color: #00b4d8; }
.qw-obj-item[open] {
	border-color: #00b4d8;
	box-shadow: 0 4px 16px rgba(10, 77, 104, 0.08);
}

.qw-obj-q {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
}
.qw-obj-q::-webkit-details-marker { display: none; }
.qw-obj-q::marker { display: none; }

.qw-obj-q-text { flex: 1; min-width: 0; }
.qw-obj-question {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 17px;
	font-weight: 700;
	color: #0a4d68;
	line-height: 1.35;
	margin-bottom: 4px;
}
.qw-obj-teaser {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 13px;
	color: #5a7a8a;
	font-style: italic;
	line-height: 1.45;
}

.qw-obj-chev {
	font-size: 20px;
	color: #5a7a8a;
	transition: transform 0.2s ease, color 0.2s;
	flex-shrink: 0;
	line-height: 1;
	margin-top: 3px;
}
.qw-obj-item[open] .qw-obj-chev { transform: rotate(180deg); color: #00b4d8; }

.qw-obj-a {
	padding: 0 24px 20px;
	font-size: 14px;
	color: #5a7a8a;
	line-height: 1.85;
}
.qw-obj-a p { margin: 0 0 14px; }
.qw-obj-a p:last-of-type { margin-bottom: 0; }
.qw-obj-a strong { color: #0a4d68; font-weight: 600; }
.qw-obj-list { margin: 8px 0 14px; padding-left: 18px; }
.qw-obj-list li { margin-bottom: 6px; }

.qw-obj-pull {
	margin: 20px 0 0;
	padding: 14px 18px;
	background: rgba(220, 63, 98, 0.05);
	border-left: 3px solid #dc3f62;
	border-radius: 0 8px 8px 0;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 17px;
	font-weight: 700;
	font-style: italic;
	color: #0a4d68;
	line-height: 1.5;
}

@media (max-width: 600px) {
	.qw-obj-q { padding: 16px 18px; gap: 12px; }
	.qw-obj-a { padding: 0 18px 18px; }
	.qw-obj-question { font-size: 15.5px; }
	.qw-obj-teaser { font-size: 12.5px; }
	.qw-obj-pull { font-size: 15px; padding: 12px 14px; }
}

/* ============================================================
   WHITE GLOVE SETUP — premium offering
   Used by template-parts/section-white-glove.php
   ============================================================ */
.qw-wg-section {
	background: #ffffff;
	padding: 80px 24px;
}
.qw-wg-inner {
	max-width: 860px;
	margin: 0 auto;
}
.qw-wg-label {
	font-size: 11px;
	font-weight: 700;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 12px;
}
.qw-wg-headline {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 32px;
	color: #0a4d68;
	line-height: 1.25;
	letter-spacing: -0.5px;
	margin: 0 0 14px;
	max-width: 720px;
}
.qw-wg-sub {
	font-size: 15px;
	color: #5a7a8a;
	line-height: 1.75;
	max-width: 680px;
	margin: 0 0 36px;
}

.qw-wg-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 24px;
	margin-bottom: 36px;
}
.qw-wg-feat {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.qw-wg-feat-icon {
	width: 38px;
	height: 38px;
	background: rgba(0, 180, 216, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	line-height: 1;
}
.qw-wg-feat-body { flex: 1; min-width: 0; }
.qw-wg-feat-title {
	font-size: 14px;
	font-weight: 600;
	color: #0a4d68;
	margin-bottom: 4px;
	line-height: 1.35;
}
.qw-wg-feat-desc {
	font-size: 13px;
	color: #5a7a8a;
	line-height: 1.7;
}

.qw-wg-pricebox {
	background: #0a4d68;
	border-radius: 14px;
	padding: 28px 32px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
}
.qw-wg-pricebox::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 100% 0%, rgba(0,180,216,0.1), transparent 60%);
	pointer-events: none;
}
.qw-wg-pricebox-left { position: relative; z-index: 1; }
.qw-wg-pricebox-label {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin-bottom: 6px;
}
.qw-wg-pricebox-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
}
.qw-wg-pricebox-price {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 900;
	font-size: 32px;
	color: #fff;
	line-height: 1;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	letter-spacing: -0.02em;
}

.qw-wg-fit {
	background: #f8fcfe;
	border: 1px solid #c8e0e8;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 28px;
}
.qw-wg-fit-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 17px;
	color: #0a4d68;
	margin-bottom: 14px;
}
.qw-wg-fit-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.qw-wg-fit-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #1a2a35;
	line-height: 1.55;
}
.qw-wg-fit-no { color: #5a7a8a; padding-top: 8px; border-top: 1px dashed #d3e3e9; margin-top: 6px; }
.qw-wg-tick {
	color: #1d9e75;
	font-weight: 700;
	flex-shrink: 0;
	font-size: 14px;
	margin-top: 1px;
}
.qw-wg-cross {
	color: #dc3f62;
	font-weight: 700;
	flex-shrink: 0;
	font-size: 16px;
	margin-top: 0;
}

.qw-wg-cta { text-align: center; }
.qw-wg-cta-btn {
	display: inline-block;
	background: #dc3f62;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 14px 32px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}
.qw-wg-cta-btn:hover { background: #c0374f; color: #fff; }
.qw-wg-strategy-btn {
	display: block;
	width: 100%;
	max-width: 480px;
	margin: 14px auto 0;
	background: #dc3f62;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 16px 28px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
	box-sizing: border-box;
}
.qw-wg-strategy-btn:hover { background: #c0374f; color: #fff; }
.qw-wg-cta-note {
	font-size: 12px;
	color: #9bb0bb;
	margin-top: 12px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.55;
}

@media (max-width: 720px) {
	.qw-wg-section { padding: 56px 20px; }
	.qw-wg-headline { font-size: 26px; }
	.qw-wg-features { grid-template-columns: 1fr; gap: 16px; }
	.qw-wg-pricebox { grid-template-columns: 1fr; gap: 14px; padding: 24px; }
	.qw-wg-pricebox-price { font-size: 28px; }
	.qw-wg-fit { padding: 20px 22px; }
}

/* ============================================================
   BUILT FOR YOU — emotional core section for non-tech owners
   Used by template-parts/section-built-for-you.php
   Dark contrasting band between Features and Ghost.
   ============================================================ */
.qw-bfu-section {
	background: #1a2a35;
	padding: 80px 24px;
	color: rgba(255, 255, 255, 0.7);
}
.qw-bfu-inner {
	max-width: 680px;
	margin: 0 auto;
}
.qw-bfu-label {
	font-size: 11px;
	font-weight: 700;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.qw-bfu-label::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: #00b4d8;
}
.qw-bfu-headline {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 36px;
	color: #ffffff;
	line-height: 1.25;
	letter-spacing: -0.4px;
	margin: 0 0 28px;
}
.qw-bfu-p {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.85;
	margin: 0 0 18px;
}
.qw-bfu-p-bright { color: rgba(255, 255, 255, 0.88); }

.qw-bfu-bigmoment {
	margin: 32px 0;
	padding: 8px 0;
	text-align: center;
}
.qw-bfu-bigline {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	line-height: 2.2;
}

.qw-bfu-pull {
	margin: 32px 0;
	padding: 18px 22px;
	background: rgba(0, 180, 216, 0.08);
	border-left: 3px solid #00b4d8;
	border-radius: 0 10px 10px 0;
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 22px;
	color: #fff;
	line-height: 1.45;
	font-weight: 700;
}

.qw-bfu-proof {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 32px;
}
.qw-bfu-proof-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 16px;
}
.qw-bfu-proof-icon {
	font-size: 20px;
	margin-bottom: 6px;
	line-height: 1;
}
.qw-bfu-proof-label {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}
.qw-bfu-proof-desc {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

@media (max-width: 600px) {
	.qw-bfu-section { padding: 56px 22px; }
	.qw-bfu-headline { font-size: 28px; }
	.qw-bfu-bigline { font-size: 16px; line-height: 1.9; }
	.qw-bfu-pull { font-size: 18px; }
	.qw-bfu-proof { grid-template-columns: 1fr; }
}

/* Transition lines between sections + inside features (Change 8) */
.qw-section-bridge {
	background: #f0fafa;
	padding: 20px 24px;
	text-align: center;
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 16px;
	color: #00b4d8;
	border-bottom: 0.5px solid #b3dce8;
}
.qw-feat-trans {
	text-align: center;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-style: italic;
	font-size: 14px;
	color: #5a7a8a;
	margin: 8px 0 14px;
	position: relative;
	padding-top: 14px;
}
.qw-feat-trans::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 1px;
	background: #c8e0e8;
}

/* ============================================================
   PRICING — 3 service cards + retainer + intake CTA
   Replaces the old .pricing-grid / .tier styles.
   ============================================================ */
.qw-price-row {
	display: grid;
	gap: 14px;
	margin-bottom: 14px;
}
.qw-price-row-plugins { grid-template-columns: repeat(2, 1fr); margin-bottom: 14px; }
.qw-price-row-services { grid-template-columns: repeat(2, 1fr); margin-bottom: 24px; }

/* Plugin tier cards (Basic + Advanced) — richer than service cards */
.qw-plugin-card {
	padding: 32px 28px 28px;
	text-align: left;
	display: flex;
	flex-direction: column;
	position: relative;
}
.qw-plugin-card .qw-price-card-name {
	font-size: 13px;
	letter-spacing: 0.08em;
}
.qw-plugin-card .qw-price-card-price {
	font-size: 40px;
}
.qw-plugin-card .qw-price-card-period {
	margin-bottom: 10px;
}
.qw-plugin-card .qw-price-card-desc {
	max-width: none;
	margin: 14px 0 18px;
	font-size: 13.5px;
}
.qw-plugin-owns {
	font-size: 12px;
	font-weight: 600;
	color: #1d9e75;
	background: rgba(29, 158, 117, 0.08);
	padding: 6px 10px;
	border-radius: 6px;
	display: inline-block;
	align-self: flex-start;
}
.qw-plugin-feats {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.qw-plugin-feats li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #1a2a35;
	line-height: 1.5;
}
.qw-plugin-feats i {
	color: #1d9e75;
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 1px;
}
.qw-plugin-feats strong { color: #0a4d68; font-weight: 600; }

.qw-plugin-card-pop {
	border: 1.5px solid #00b4d8;
	background: linear-gradient(180deg, #fff, rgba(0,180,216,0.025));
	box-shadow: 0 8px 22px rgba(10, 77, 104, 0.07);
}
.qw-plugin-card-pop .qw-price-card-name { color: #00b4d8; }

.qw-plugin-badge {
	position: absolute;
	top: -10px;
	right: 22px;
	background: #0a4d68;
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(10, 77, 104, 0.18);
}

.qw-plugin-btn {
	display: block;
	text-align: center;
	width: 100%;
	padding: 13px 18px;
	border-radius: 8px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, transform 0.08s ease;
	border: none;
	cursor: pointer;
	margin-top: auto;
}
.qw-plugin-btn:active { transform: translateY(1px); }
.qw-plugin-btn-navy { background: #0a4d68; color: #fff; }
.qw-plugin-btn-navy:hover { background: #073a51; color: #fff; }
.qw-plugin-btn-cta { background: #dc3f62; color: #fff; }
.qw-plugin-btn-cta:hover { background: #c0374f; color: #fff; }
.qw-price-card {
	background: #fff;
	border: 1px solid #c8e0e8;
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	transition: border-color 0.15s, transform 0.15s;
}
.qw-price-card:hover { border-color: #00b4d8; transform: translateY(-2px); }
.qw-price-card-mid {
	border-color: #00b4d8;
	background: linear-gradient(180deg, #fff, rgba(0,180,216,0.03));
}
.qw-price-card-name {
	font-size: 12px;
	font-weight: 700;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.qw-price-card-price {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 900;
	font-size: 38px;
	color: #0a4d68;
	line-height: 1;
	letter-spacing: -0.02em;
}
.qw-price-card-period {
	font-size: 12px;
	color: #5a7a8a;
	margin-top: 4px;
	margin-bottom: 14px;
}
.qw-price-card-desc {
	font-size: 13px;
	color: #5a7a8a;
	line-height: 1.65;
	max-width: 240px;
	margin: 0 auto;
}

.qw-retainer {
	background: #0a4d68;
	color: #fff;
	border-radius: 14px;
	padding: 28px 32px;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}
.qw-retainer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 20%, rgba(0,180,216,0.12), transparent 60%);
	pointer-events: none;
}
.qw-retainer-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}
.qw-retainer-eyebrow {
	font-size: 10.5px;
	font-weight: 700;
	color: #00b4d8;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 6px;
}
.qw-retainer-name {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	line-height: 1.2;
}
.qw-retainer-price-wrap { text-align: right; }
.qw-retainer-price {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 900;
	font-size: 36px;
	color: #fff;
	line-height: 1;
}
.qw-retainer-per {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.6);
	margin-left: 2px;
}
.qw-retainer-sub {
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	margin-top: 4px;
	letter-spacing: 0.03em;
}
.qw-retainer-feats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	position: relative;
	z-index: 1;
}
.qw-retainer-feats li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13.5px;
	color: rgba(255,255,255,0.85);
	line-height: 1.55;
}
.qw-retainer-feats i {
	color: #00b4d8;
	font-size: 17px;
	flex-shrink: 0;
	margin-top: 1px;
}
.qw-retainer-feats strong { color: #fff; font-weight: 600; }

.qw-intake-cta {
	background: #fff;
	border: 1.5px solid #dc3f62;
	border-radius: 12px;
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	box-shadow: 0 6px 18px rgba(220,63,98,0.08);
}
.qw-intake-cta-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 700;
	font-size: 18px;
	color: #0a4d68;
	margin-bottom: 4px;
}
.qw-intake-cta-desc {
	font-size: 13px;
	color: #5a7a8a;
	line-height: 1.55;
}
.qw-intake-cta-btn {
	display: inline-block;
	background: #dc3f62;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 26px;
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s;
	flex-shrink: 0;
}
.qw-intake-cta-btn:hover { background: #c0374f; }

.qw-intake-alt {
	display: block;
	text-align: center;
	margin: 18px auto 0;
	padding: 4px 8px;
	max-width: 640px;
	font-size: 13px;
	color: #5a7a8a;
	line-height: 1.55;
	text-decoration: none;
	transition: color 0.15s;
}
.qw-intake-alt strong {
	color: #0a4d68;
	font-weight: 600;
	border-bottom: 1px dashed #c8e0e8;
	transition: border-color 0.15s, color 0.15s;
}
.qw-intake-alt:hover { color: #0a4d68; }
.qw-intake-alt:hover strong { color: #00b4d8; border-bottom-color: #00b4d8; }

@media (max-width: 820px) {
	.qw-fgrp-items { grid-template-columns: repeat(2, 1fr); }
	.qw-price-row, .qw-price-row-plugins, .qw-price-row-services { grid-template-columns: 1fr; gap: 12px; }
	.qw-plugin-card { padding: 26px 22px 22px; }
	.qw-plugin-card .qw-price-card-price { font-size: 34px; }
	.qw-retainer-head { flex-direction: column; align-items: flex-start; gap: 14px; }
	.qw-retainer-price-wrap { text-align: left; }
	.qw-retainer-feats { grid-template-columns: 1fr; }
	.qw-intake-cta { flex-direction: column; align-items: flex-start; text-align: left; }
	.qw-intake-cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 520px) {
	.qw-fgrp-items { grid-template-columns: 1fr; }
	.qw-price-card-price { font-size: 32px; }
	.qw-retainer { padding: 22px 20px; }
	.qw-retainer-name { font-size: 19px; }
}
