:root {
  --qc-ink: #101828;
  --qc-text: #475467;
  --qc-muted: #667085;
  --qc-line: #e4e7ec;
  --qc-soft: #f5f7fb;
  --qc-blue: #2563eb;
  --qc-blue-dark: #1d4ed8;
  --qc-violet: #7c3aed;
  --qc-navy: #13213c;
  --qc-green: #0e9f6e;
  --qc-white: #fff;
  --qc-shadow: 0 18px 50px rgba(16, 24, 40, .09);
  --qc-radius: 20px;
  --qc-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--qc-text); background: #fff; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.qc-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--qc-blue); text-decoration: none; }
a:hover { color: var(--qc-blue-dark); }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .7em; color: var(--qc-ink); font-weight: 760; line-height: 1.15; letter-spacing: -.025em; }
p { margin: 0 0 1.25em; }
.qc-container { width: min(calc(100% - 40px), var(--qc-container)); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.qc-skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; background: #fff; border-radius: 8px; transform: translateY(-150%); box-shadow: var(--qc-shadow); }
.qc-skip-link:focus { transform: none; }

/* Header */
.qc-header { position: sticky; z-index: 1000; top: 0; height: 76px; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(228,231,236,.8); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.qc-header.is-scrolled { box-shadow: 0 8px 28px rgba(16,24,40,.07); }
.qc-header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.qc-brand { flex: 0 0 auto; }
.qc-wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--qc-ink); font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.qc-wordmark > span:last-child span { color: var(--qc-blue); }
.qc-mark { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--qc-blue), var(--qc-violet)); border-radius: 11px; box-shadow: 0 8px 18px rgba(37,99,235,.24); }
.qc-mark svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.custom-logo { display: block; max-height: 48px; width: auto; }
.qc-navigation { margin-left: auto; }
.qc-menu, .qc-footer-menu { list-style: none; padding: 0; margin: 0; }
.qc-menu { display: flex; align-items: center; gap: 4px; }
.qc-menu > li { position: relative; }
.qc-menu a { display: block; padding: 10px 12px; border-radius: 9px; color: #344054; font-size: 14px; font-weight: 650; }
.qc-menu a:hover, .qc-menu .current-menu-item > a, .qc-menu .current-menu-ancestor > a { color: var(--qc-blue); background: #eff6ff; }
.qc-menu .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(5px); background: #fff; border: 1px solid var(--qc-line); border-radius: 14px; box-shadow: var(--qc-shadow); transition: .18s ease; }
.qc-menu li:hover > .sub-menu, .qc-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.qc-header-cta, .qc-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(135deg, var(--qc-blue), #3154d9); border: 0; border-radius: 12px; font-size: 14px; font-weight: 750; box-shadow: 0 8px 20px rgba(37,99,235,.2); transition: transform .2s ease, box-shadow .2s ease; }
.qc-header-cta { padding: 10px 16px; }
.qc-button { padding: 13px 20px; }
.qc-header-cta:hover, .qc-button:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(37,99,235,.27); }
.qc-nav-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; background: #fff; border: 1px solid var(--qc-line); border-radius: 10px; }
.qc-nav-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 4px 0; background: var(--qc-ink); border-radius: 2px; }

/* Hero */
.qc-home-hero { position: relative; overflow: hidden; min-height: 630px; color: #d7e0f1; background: radial-gradient(circle at 50% -15%, #263d69 0, var(--qc-navy) 43%, #0d172b 100%); }
.qc-home-hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.qc-home-hero-inner { position: relative; z-index: 2; padding: 92px 0 54px; text-align: center; }
.qc-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; padding: 7px 13px; color: #bfdbfe; background: rgba(37,99,235,.12); border: 1px solid rgba(147,197,253,.2); border-radius: 999px; font-size: 13px; font-weight: 700; }
.qc-pill span { width: 7px; height: 7px; background: #34d399; border-radius: 50%; box-shadow: 0 0 0 4px rgba(52,211,153,.12); }
.qc-home-hero h1 { max-width: 800px; margin: 0 auto 22px; color: #fff; font-size: clamp(48px, 7vw, 82px); line-height: .98; letter-spacing: -.065em; }
.qc-home-hero h1 span { color: #93c5fd; }
.qc-home-hero-inner > p { max-width: 680px; margin: 0 auto 34px; font-size: 18px; color: #b9c5d8; }
.qc-hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.qc-orb-one { width: 360px; height: 360px; left: -180px; top: 60px; background: rgba(124,58,237,.17); }
.qc-orb-two { width: 320px; height: 320px; right: -150px; bottom: -30px; background: rgba(37,99,235,.2); }
.qc-tool-finder { position: relative; z-index: 5; max-width: 760px; margin: 0 auto; text-align: left; }
.qc-tool-finder form { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 12px; padding: 9px 10px 9px 19px; background: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 17px; box-shadow: 0 25px 55px rgba(0,0,0,.28); }
.qc-tool-finder svg { width: 24px; fill: none; stroke: #98a2b3; stroke-width: 1.8; }
.qc-tool-finder input { min-width: 0; height: 48px; color: var(--qc-ink); background: transparent; border: 0; outline: 0; font-size: 16px; }
.qc-tool-finder button { height: 48px; padding: 0 22px; color: #fff; background: var(--qc-blue); border: 0; border-radius: 11px; font-weight: 750; cursor: pointer; }
.qc-search-results { position: absolute; z-index: 10; top: calc(100% + 8px); left: 0; right: 0; max-height: 390px; overflow-y: auto; padding: 8px; background: #fff; border: 1px solid var(--qc-line); border-radius: 15px; box-shadow: var(--qc-shadow); }
.qc-search-results a { display: flex; justify-content: space-between; gap: 16px; padding: 11px 13px; color: var(--qc-ink); border-radius: 10px; }
.qc-search-results a:hover { background: #f5f8ff; }
.qc-search-results strong, .qc-search-results small { display: block; }
.qc-search-results small { color: var(--qc-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qc-search-results p { margin: 0; padding: 12px; color: var(--qc-muted); }
.qc-quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; margin-top: 18px; color: #8fa1bd; font-size: 13px; }
.qc-quick-links a { color: #c7d2e5; border-bottom: 1px dashed rgba(199,210,229,.4); }
.qc-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 820px; margin: 52px auto 0; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.12); }
.qc-trust-strip span { display: flex; flex-direction: column; gap: 2px; color: #8595af; font-size: 12px; }
.qc-trust-strip b { color: #eef4ff; font-size: 17px; }

/* Sections */
.qc-section { padding: 92px 0; }
.qc-section:nth-of-type(odd) { background: var(--qc-soft); }
.qc-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.qc-section-head.centered { justify-content: center; text-align: center; }
.qc-section-head h2, .qc-split-heading h2, .qc-why-grid h2, .qc-prose-wide h2, .qc-faq-layout h2 { margin-bottom: 10px; font-size: clamp(31px, 4vw, 46px); }
.qc-section-head p { margin: 0; color: var(--qc-muted); }
.qc-kicker { display: inline-block; margin-bottom: 12px; color: var(--qc-blue); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.qc-kicker.light { color: #93c5fd; }
.qc-text-link { flex: 0 0 auto; color: var(--qc-blue); font-size: 14px; font-weight: 750; }
.qc-text-link span { margin-left: 4px; }

/* Plugin cards on homepage */
.qc-home .ucs-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.qc-home .ucs-tool-card { min-height: 145px; display: flex; align-items: flex-start; gap: 14px; padding: 20px; color: var(--qc-text); background: #fff; border: 1px solid var(--qc-line); border-radius: 17px; box-shadow: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.qc-home .ucs-tool-card:hover { transform: translateY(-3px); border-color: #b9cdfa; box-shadow: 0 15px 34px rgba(37,99,235,.1); }
.qc-home .ucs-tool-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--qc-blue); background: #eff6ff; border-radius: 12px; font-size: 21px; }
.qc-home .ucs-tool-card strong, .qc-home .ucs-tool-card small { display: block; }
.qc-home .ucs-tool-card strong { margin: 2px 0 6px; color: var(--qc-ink); font-size: 15px; }
.qc-home .ucs-tool-card small { color: var(--qc-muted); font-size: 12px; line-height: 1.5; }

.qc-category-section { background: #fff !important; }
.qc-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.qc-category-card { display: flex; align-items: center; gap: 14px; min-height: 96px; padding: 17px; color: var(--qc-text); background: #fff; border: 1px solid var(--qc-line); border-radius: 16px; transition: .2s ease; }
.qc-category-card:hover { color: var(--qc-text); border-color: #bfd0fb; box-shadow: 0 12px 28px rgba(16,24,40,.07); transform: translateY(-2px); }
.qc-category-icon { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--qc-blue); background: linear-gradient(135deg, #eff6ff, #eef2ff); border-radius: 13px; font-size: 11px; font-weight: 850; }
.qc-category-card strong, .qc-category-card small { display: block; }
.qc-category-card strong { color: var(--qc-ink); font-size: 14px; }
.qc-category-card small { color: var(--qc-muted); font-size: 12px; }
.qc-category-card i { margin-left: auto; color: #98a2b3; font-style: normal; }

.qc-steps-section { color: #c5d0e2; background: var(--qc-navy) !important; }
.qc-split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; }
.qc-split-heading h2 { color: #fff; }
.qc-split-heading > p { color: #aab8cd; }
.qc-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.qc-step-grid article { position: relative; padding: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; }
.qc-step-grid article > b { position: absolute; top: 22px; right: 22px; color: rgba(255,255,255,.16); font-size: 26px; }
.qc-step-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 28px; color: #fff; background: var(--qc-blue); border-radius: 12px; font-size: 21px; }
.qc-step-grid h3 { color: #fff; font-size: 19px; }
.qc-step-grid p { margin: 0; color: #aab8cd; font-size: 14px; }

.qc-why-section { background: #fff !important; }
.qc-why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.qc-why-grid > div:first-child > p { margin-bottom: 28px; font-size: 17px; }
.qc-benefit-list { display: grid; gap: 12px; }
.qc-benefit-list article { display: flex; gap: 17px; padding: 21px; background: var(--qc-soft); border: 1px solid #edf0f5; border-radius: 16px; }
.qc-benefit-list article > span { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--qc-blue); background: #fff; border-radius: 12px; box-shadow: 0 5px 15px rgba(16,24,40,.06); }
.qc-benefit-list h3 { margin-bottom: 4px; font-size: 17px; }
.qc-benefit-list p { margin: 0; color: var(--qc-muted); font-size: 14px; }

.qc-seo-section { background: #f7f9fc !important; }
.qc-prose-wide { max-width: 1000px; text-align: center; }
.qc-prose-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; margin-top: 28px; text-align: left; }
.qc-prose-columns p { margin: 0; }
.qc-faq-section { background: #fff !important; }
.qc-faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.qc-faq-list details { border-top: 1px solid var(--qc-line); }
.qc-faq-list details:last-child { border-bottom: 1px solid var(--qc-line); }
.qc-faq-list summary { position: relative; padding: 19px 40px 19px 0; color: var(--qc-ink); font-weight: 720; cursor: pointer; list-style: none; }
.qc-faq-list summary::-webkit-details-marker { display: none; }
.qc-faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 16px; color: var(--qc-blue); font-size: 22px; }
.qc-faq-list details[open] summary::after { content: "−"; }
.qc-faq-list p { padding-right: 45px; color: var(--qc-muted); font-size: 14px; }

.qc-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qc-post-grid article { overflow: hidden; background: #fff; border: 1px solid var(--qc-line); border-radius: 17px; }
.qc-post-grid article > a, .qc-post-placeholder { display: block; aspect-ratio: 16/9; overflow: hidden; }
.qc-post-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.qc-post-grid article:hover img { transform: scale(1.025); }
.qc-post-placeholder { display: grid; place-items: center; color: rgba(255,255,255,.65); background: linear-gradient(135deg, var(--qc-navy), var(--qc-blue)); font-weight: 800; letter-spacing: .08em; }
.qc-post-grid article > div { padding: 21px; }
.qc-post-grid article > div > span { color: var(--qc-blue); font-size: 12px; font-weight: 700; }
.qc-post-grid h2, .qc-post-grid h3 { margin: 8px 0; font-size: 19px; }
.qc-post-grid h2 a, .qc-post-grid h3 a { color: var(--qc-ink); }
.qc-post-grid p { color: var(--qc-muted); font-size: 14px; }
.qc-cta { padding: 55px 0; color: #bfcae0; background: linear-gradient(120deg, var(--qc-blue-dark), var(--qc-violet)); }
.qc-cta .qc-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.qc-cta h2 { max-width: 720px; margin: 4px 0 0; color: #fff; font-size: clamp(26px, 3vw, 38px); }
.qc-cta .qc-button.light { flex: 0 0 auto; color: var(--qc-blue-dark); background: #fff; box-shadow: none; }

/* Content */
.qc-main { min-height: 58vh; padding-top: 72px; padding-bottom: 92px; }
.qc-page-shell, .qc-article-shell { max-width: 880px; }
.qc-page-header { max-width: 850px; margin-bottom: 45px; }
.qc-page-header h1 { font-size: clamp(38px, 6vw, 62px); }
.qc-page-header > p, .qc-archive-desc { max-width: 700px; color: var(--qc-muted); font-size: 18px; }
.qc-entry-content { color: #344054; }
.qc-entry-content > * { max-width: 760px; }
.qc-entry-content > .alignwide { max-width: 1100px; margin-left: 50%; transform: translateX(-50%); }
.qc-entry-content h2 { margin-top: 2em; font-size: 29px; }
.qc-entry-content h3 { margin-top: 1.7em; font-size: 22px; }
.qc-entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.qc-entry-content blockquote { margin: 30px 0; padding: 18px 24px; background: #eff6ff; border-left: 4px solid var(--qc-blue); border-radius: 0 12px 12px 0; }
.qc-featured-image { margin: 0 0 40px; overflow: hidden; border-radius: var(--qc-radius); box-shadow: 0 18px 45px rgba(16,24,40,.10); }
.qc-featured-image img { display: block; width: 100%; height: auto; }
.qc-listing .qc-post-grid { margin-top: 40px; }
.qc-search-list { display: grid; gap: 14px; }
.qc-search-list article { padding: 23px; border: 1px solid var(--qc-line); border-radius: 15px; }
.qc-search-list article span { color: var(--qc-blue); font-size: 12px; font-weight: 750; text-transform: uppercase; }
.qc-search-list h2 { margin: 5px 0; font-size: 23px; }
.qc-search-list h2 a { color: var(--qc-ink); }
.qc-search-list p { margin: 0; color: var(--qc-muted); }
.qc-empty { padding: 50px; text-align: center; background: var(--qc-soft); border-radius: var(--qc-radius); }
.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.page-numbers { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 10px; color: var(--qc-text); background: #fff; border: 1px solid var(--qc-line); border-radius: 9px; }
.page-numbers.current { color: #fff; background: var(--qc-blue); border-color: var(--qc-blue); }
.qc-error-page { max-width: 760px; text-align: center; }
.qc-error-page > span { color: #dbeafe; font-size: 130px; font-weight: 850; line-height: 1; }
.qc-error-page h1 { font-size: 43px; }
.qc-error-page form { display: flex; max-width: 560px; margin: 30px auto; }
.qc-error-page form label { flex: 1; }
.qc-error-page form input[type="search"] { width: 100%; height: 50px; padding: 0 15px; border: 1px solid var(--qc-line); border-radius: 11px 0 0 11px; }
.qc-error-page form input[type="submit"] { padding: 0 20px; color: #fff; background: var(--qc-blue); border: 0; border-radius: 0 11px 11px 0; }
.qc-error-page > div { display: flex; justify-content: center; align-items: center; gap: 22px; }

/* Contact form */
.ucs-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; padding: 28px; background: var(--qc-soft); border: 1px solid var(--qc-line); border-radius: var(--qc-radius); }
.ucs-contact-form .wide { grid-column: 1 / -1; }
.ucs-contact-form label { display: block; margin-bottom: 6px; color: var(--qc-ink); font-size: 13px; font-weight: 700; }
.ucs-contact-form input, .ucs-contact-form textarea { width: 100%; padding: 12px 14px; color: var(--qc-ink); background: #fff; border: 1px solid #d0d5dd; border-radius: 10px; outline: none; }
.ucs-contact-form input:focus, .ucs-contact-form textarea:focus { border-color: var(--qc-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.ucs-contact-form button { padding: 13px 22px; color: #fff; background: var(--qc-blue); border: 0; border-radius: 11px; font-weight: 750; cursor: pointer; }
.ucs-honeypot { position: absolute !important; left: -9999px !important; }
.ucs-contact-notice { margin: 22px 0; padding: 13px 16px; border-radius: 10px; }
.ucs-contact-notice.success { color: #067647; background: #ecfdf3; border: 1px solid #abefc6; }
.ucs-contact-notice.error { color: #b42318; background: #fef3f2; border: 1px solid #fecdca; }

/* Converter plugin integration */
.qc-tool-view .qc-site-content { background: #f8fafc; }
.qc-tool-view .ucs-site-main { padding-top: 32px; padding-bottom: 80px; }
.qc-tool-view .ucs-hero { background: transparent; }
.qc-tool-view .ucs-tool-page { max-width: 1120px; margin-inline: auto; }
.qc-tool-view .ucs-converter { box-shadow: 0 22px 60px rgba(16,24,40,.08); }
.ucs-archive.ucs-site-main { padding-top: 45px; padding-bottom: 80px; }

/* Footer */
.qc-footer { padding: 68px 0 0; color: #aebbd0; background: #0d172b; }
.qc-footer-grid { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); gap: 34px; padding-bottom: 50px; }
.qc-footer .qc-wordmark { color: #fff; }
.qc-footer .qc-wordmark.is-light > span:last-child { color: #fff; }
.qc-footer .qc-wordmark.is-light > span:last-child span { color: #60a5fa; }
.qc-footer-about > p { max-width: 390px; margin-top: 20px; font-size: 14px; }
.qc-footer-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #8392aa; font-size: 12px; }
.qc-footer h2 { margin: 6px 0 18px; color: #fff; font-size: 14px; letter-spacing: 0; }
.qc-footer ul { list-style: none; margin: 0; padding: 0; }
.qc-footer li { margin: 9px 0; }
.qc-footer li a { color: #aebbd0; font-size: 13px; }
.qc-footer li a:hover { color: #fff; }
.qc-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.qc-footer-bottom p { margin: 0; color: #75849c; font-size: 12px; }

@media (max-width: 1024px) {
  .qc-header-inner { gap: 14px; }
  .qc-header-cta { display: none; }
  .qc-home .ucs-grid, .qc-category-grid { grid-template-columns: repeat(3, 1fr); }
  .qc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 820px) {
  .qc-header { height: 68px; }
  .qc-nav-toggle { display: block; }
  .qc-navigation { position: fixed; inset: 68px 0 auto; max-height: calc(100vh - 68px); overflow-y: auto; padding: 14px 20px 25px; visibility: hidden; opacity: 0; transform: translateY(-8px); background: #fff; border-bottom: 1px solid var(--qc-line); box-shadow: 0 16px 30px rgba(16,24,40,.12); transition: .18s ease; }
  .qc-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .qc-menu { display: block; }
  .qc-menu a { padding: 12px; font-size: 15px; }
  .qc-menu .sub-menu { position: static; min-width: 0; display: block; padding: 0 0 0 14px; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; }
  .qc-home-hero { min-height: 590px; }
  .qc-home-hero-inner { padding-top: 72px; }
  .qc-home-hero h1 { font-size: clamp(44px, 10vw, 66px); }
  .qc-home .ucs-grid, .qc-category-grid { grid-template-columns: repeat(2, 1fr); }
  .qc-split-heading, .qc-why-grid, .qc-faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .qc-step-grid { grid-template-columns: 1fr; }
  .qc-prose-columns { gap: 25px; }
  .qc-footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 580px) {
  .qc-container { width: min(calc(100% - 28px), var(--qc-container)); }
  .qc-wordmark { font-size: 18px; }
  .qc-mark { width: 35px; height: 35px; }
  .qc-home-hero-inner { padding-top: 58px; }
  .qc-home-hero h1 { font-size: 43px; }
  .qc-home-hero-inner > p { font-size: 16px; }
  .qc-tool-finder form { grid-template-columns: 22px 1fr; padding: 9px 13px; }
  .qc-tool-finder button { grid-column: 1 / -1; width: 100%; }
  .qc-trust-strip { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 38px; }
  .qc-section { padding: 66px 0; }
  .qc-section-head { display: block; }
  .qc-section-head .qc-text-link { display: inline-block; margin-top: 16px; }
  .qc-section-head h2, .qc-split-heading h2, .qc-why-grid h2, .qc-prose-wide h2, .qc-faq-layout h2 { font-size: 32px; }
  .qc-home .ucs-grid, .qc-category-grid, .qc-prose-columns, .qc-post-grid { grid-template-columns: 1fr; }
  .qc-home .ucs-tool-card { min-height: 0; }
  .qc-cta .qc-container { display: block; }
  .qc-cta .qc-button { margin-top: 24px; }
  .qc-main { padding-top: 50px; }
  .qc-page-header h1 { font-size: 38px; }
  .ucs-contact-form { grid-template-columns: 1fr; padding: 20px; }
  .ucs-contact-form .wide { grid-column: auto; }
  .qc-footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .qc-footer-about { grid-column: 1 / -1; }
  .qc-footer-bottom { display: block; }
  .qc-footer-bottom p + p { margin-top: 5px; }
  .qc-error-page > span { font-size: 90px; }
  .qc-error-page > div { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
