/* =====================================================================
   VA Business Classic — main stylesheet
   Palette: navy #011633 · deep #00152f · orange #ff5722 · muted #7a7a7a
   Fonts:   Heebo (headings) · Inter (body)
   ===================================================================== */

:root {
	--navy: #011633;
	--navy-deep: #00152f;
	--orange: #ff5722;
	--orange-dark: #e64a19;
	--muted: #7a7a7a;
	--light: #f9f9f9;
	--light-2: #f0f0f0;
	--border: #eaeaea;
	--white: #fff;
	--container: 1200px;
	--radius: 14px;
	--font-head: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--navy);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 .5em;
	font-weight: 700;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 16px; z-index: 1000; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	padding: .95rem 1.75rem;
	border-radius: 20px 0 20px 0;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,87,34,.3); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* WordPress-generated submit buttons (search, comments) share the button look. */
input[type=submit], button[type=submit], .search-submit, #commentform input[type=submit] {
	font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
	padding: .95rem 1.75rem; border: 1px solid transparent; cursor: pointer;
	border-radius: 20px 0 20px 0; background: var(--orange); color: #fff;
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
input[type=submit]:hover, button[type=submit]:hover, .search-submit:hover, #commentform input[type=submit]:hover {
	background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,87,34,.3);
}

/* ---------- Shared section bits ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-weight: 600; font-size: .8rem;
	letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
	margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.eyebrow--center { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.section-lead { color: var(--muted); max-width: 620px; }
.section-head { margin-bottom: 3rem; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Top bar ---------- */
.site-topbar { background: #fff; border-bottom: 1px solid var(--border); font-size: .95rem; }
.site-topbar__inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 52px; }
.site-topbar__contact { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.site-topbar__contact li { display: inline-flex; flex-direction: row; align-items: center; gap: .55rem; color: var(--navy); line-height: 1; }
.site-topbar__contact a { color: var(--navy); }
.site-topbar__contact a:hover { color: var(--orange); }
.site-topbar__social { display: flex; flex-direction: row; align-items: center; gap: 1.4rem; margin: 0; padding: 0; list-style: none; }
.site-topbar__social li { display: inline-flex; }
.site-topbar__social a { display: inline-flex; align-items: center; color: var(--navy); transition: color .2s ease; }
.site-topbar__social a:hover { color: var(--orange); }
.va-icon { flex-shrink: 0; vertical-align: middle; }
.site-topbar__contact .va-icon { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: #fff; box-shadow: 0 1px 0 rgba(1,22,51,.07);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 90px; }
.site-logo-text, .footer-logo-text {
	font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy);
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { max-height: 46px; width: auto; }
.custom-logo { max-height: 46px; width: auto; }
.main-navigation { margin: 0 auto; }
.main-navigation ul { display: flex; gap: 2.5rem; align-items: center; }
.main-navigation a {
	font-family: var(--font-head); font-weight: 500; color: var(--navy); font-size: 1rem;
}
.main-navigation a:hover { color: var(--orange); }
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { color: var(--orange); }
.main-navigation .menu-item-has-children > a { display: inline-flex; align-items: center; gap: .4rem; }
.main-navigation .menu-item-has-children > a::after {
	content: ""; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}
.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { padding: 1rem 2rem; }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--border); border-radius: 8px; position: relative; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 50%; transform: translateX(-50%);
	width: 20px; height: 2px; background: var(--navy);
}
.nav-toggle__bar { top: 50%; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background-image: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.6) 34%, rgba(255,255,255,.05) 62%, rgba(255,255,255,0) 100%), var(--hero-img);
	background-size: cover;
	background-position: center right;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 140px;
	overflow: hidden;
}
.hero__inner { padding: 7rem 24px 8rem; }
.hero__content { max-width: 560px; }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -.01em; margin-bottom: 1.25rem; }
.hero__text { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* Logos (left) + video card (right) straddling the hero bottom edge.
   The whole row is pulled up so the taller card overlaps the image while
   the logos sit on the white area just below it. */
.hero__foot {
	position: relative; z-index: 5;
	display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
	margin-top: -70px; margin-bottom: 4rem;
}
.video-card {
	display: flex; align-items: center; gap: 1.5rem;
	background: var(--navy); color: #fff;
	padding: 1.5rem 2rem; border-radius: 50px 0 50px 0;
	max-width: 640px; box-shadow: 0 30px 60px rgba(1,22,51,.28);
}
.video-card__stat { text-align: center; flex: 0 0 auto; }
.video-card__stat strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; display: block; line-height: 1; }
.video-card__stat strong span { color: var(--orange); }
.video-card__stat small { font-size: .85rem; opacity: .85; }
.video-card__text { font-size: .95rem; line-height: 1.45; margin: 0; opacity: .92; }

.play-btn {
	flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
	background: var(--orange); display: flex; align-items: center; justify-content: center; position: relative;
	transition: transform .2s ease;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn__icon {
	width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px;
	border-color: transparent transparent transparent #fff; margin-left: 3px;
}
.play-btn::before {
	content: ""; position: absolute; inset: -6px; border-radius: 50%;
	border: 2px solid rgba(255,87,34,.45); animation: va-pulse 2s ease-out infinite;
}
@keyframes va-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

.hero__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 3rem; padding-bottom: .5rem; }
.hero__logos img { width: 120px; opacity: .55; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.hero__logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Welcome / Core Values ---------- */
.welcome { padding: 6rem 0; }
.welcome__grid { display: grid; grid-template-columns: 48% 52%; gap: 4rem; align-items: center; }
.welcome__media { position: relative; }
.welcome__img { width: 100%; border-radius: 60px 0 60px 0; }
.corevalue {
	position: absolute; right: 0; bottom: 0; width: min(86%, 470px);
	background: rgba(255,255,255,.85); color: #fff; padding: 14px;
	border-radius: 60px 0 60px 0; box-shadow: 0 24px 50px rgba(1,22,51,.25);
	backdrop-filter: blur(2px);
}
.corevalue__inner {
	background: var(--navy); padding: 1.75rem 1.9rem;
	border-radius: 50px 0 50px 0;
}
.corevalue h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1rem; }
.corevalue ul li {
	position: relative; padding-left: 1.9rem; margin: .55rem 0; font-size: .95rem; line-height: 1.4;
}
.corevalue ul li::before {
	content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700;
}

/* ---------- Fun facts / stats ---------- */
.funfacts { padding: 2rem 0 4rem; }
.funfacts__card {
	background: var(--light); border-radius: 60px 0 60px 0;
	padding: 4rem 2rem;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.funfact { text-align: center; display: flex; flex-direction: column; align-items: center; }
.funfact__icon { color: var(--orange); margin-bottom: 1.5rem; line-height: 0; }
.funfact__number {
	font-family: var(--font-head); font-weight: 800; color: var(--navy);
	font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; margin-bottom: .5rem;
}
.funfact__title { color: var(--muted); font-size: 1.05rem; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 2.5rem 0; }
.feature__icon {
	width: 70px; height: 70px; display: inline-flex; align-items: center; justify-content: center;
	background: var(--orange); border-radius: 16px 16px 16px 4px; box-shadow: 0 12px 26px rgba(255,87,34,.3);
	margin-bottom: 1rem;
}
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--muted); font-size: .92rem; margin: 0; }
.signature img { margin-bottom: .35rem; }
.signature span { color: var(--muted); font-size: .9rem; }

/* ---------- Services ---------- */
.services { padding: 6rem 0; background: var(--light); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.9rem;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 22px 50px rgba(1,22,51,.12); }
.service-card__icon {
	width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 12px; background: rgba(255,87,34,.1); color: var(--orange); margin-bottom: 1.1rem;
	transition: background .25s ease, color .25s ease;
}
.service-card:hover .service-card__icon { background: var(--orange); color: #fff; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .95rem; }
.service-card__link { font-family: var(--font-head); font-weight: 600; font-size: .9rem; }

/* ---------- Why choose us ---------- */
.why { padding: 0; }
/* Full-bleed image on the left; it stretches to the top and bottom of the section.
   The right column carries the vertical padding and stays aligned with the site container. */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.why__content { padding: 6rem 0 6rem clamp(24px, 5vw, 5rem); padding-right: max(24px, calc(50vw - 576px)); }

/* Left: image with overlapping testimonial card */
.why__media { position: relative; min-height: 480px; }
.why__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.quote-card {
	position: absolute; right: 0; bottom: 48px; max-width: 420px; margin: 0;
	background: #fff; padding: 1.75rem 2rem; border-radius: 14px 0 0 14px;
	box-shadow: 0 24px 50px rgba(1,22,51,.16);
}
.quote-card blockquote {
	margin: 0 0 1rem; padding-left: 1rem; border-left: 3px solid var(--orange);
	color: var(--muted); font-size: 1rem; line-height: 1.55;
}
.quote-card figcaption { font-family: var(--font-head); font-weight: 700; color: var(--navy); }

/* Right: heading + circular stats */
.why__content .section-lead { margin-bottom: 2.5rem; }
.compare-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.progress-circle {
	position: relative; width: 120px; height: 120px; border-radius: 50%;
	display: grid; place-items: center; margin-bottom: 1.25rem;
	background: conic-gradient(var(--orange) calc(var(--val) * 1%), var(--light-2) 0);
}
.progress-circle::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #fff; }
.progress-circle span {
	position: relative; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--navy);
}
.stat-circle h4 { font-size: 1.25rem; margin-bottom: .6rem; }
.stat-circle p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- How it works ---------- */
.how { padding: 6rem 0; background: var(--light); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(1,22,51,.12); }
.step-card__num { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--orange); line-height: 1; display: block; margin-bottom: .75rem; }
.step-card h3 { font-size: 1.25rem; }
.step-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Blog ---------- */
section.blog { padding: 6rem 0; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(1,22,51,.12); }
.post-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card__body { padding: 1.5rem; }
.post-card__date { color: var(--orange); font-size: .85rem; font-weight: 500; }
.post-card h3 { font-size: 1.2rem; margin: .35rem 0 .5rem; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--orange); }
.post-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.blog__more { text-align: center; margin-top: 3rem; }

/* ---------- CTA ---------- */
.cta { padding: 4.5rem 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta__text { max-width: 640px; }
.cta__text h2 { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
.cta__text p { color: rgba(255,255,255,.8); margin: 0; }
.cta .eyebrow { color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 5rem 0 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--orange); }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col--about p { margin: 1rem 0 1.5rem; }
.footer-logo-text { color: #fff; }
.social-list { display: flex; gap: .6rem; }
.social-list a {
	width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 600;
}
.social-list a:hover { background: var(--orange); color: #fff; }
.contact-list li { margin-bottom: .8rem; }
.contact-list span { display: block; color: #fff; font-weight: 600; font-size: .85rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; }
.site-footer__bottom p { text-align: center; margin: 0; font-size: .9rem; }

/* ---------- Inner page banner ---------- */
.page-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 4.5rem 0; text-align: center; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-banner .breadcrumb { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .75rem; }
.page-banner .breadcrumb a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb a:hover { color: #fff; }

/* ---------- Inner content / single / archive ---------- */
.content-area { padding: 5rem 0; }
.content-narrow { max-width: 760px; margin: 0 auto; }
.entry-content { font-size: 1.05rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content img, .entry-content .wp-post-image { border-radius: var(--radius); }
.entry-thumb { margin-bottom: 2rem; }
.entry-thumb img { width: 100%; border-radius: var(--radius); }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.cat-pill { display: inline-block; background: rgba(255,87,34,.1); color: var(--orange); font-size: .8rem; font-weight: 600; padding: .25rem .7rem; border-radius: 100px; }
.entry-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center; }
.entry-tags { margin-top: 2rem; }
.entry-tags a { display: inline-block; background: var(--light-2); color: var(--navy); font-size: .82rem; padding: .25rem .7rem; border-radius: 6px; margin: 0 .35rem .35rem 0; }
.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers { display: inline-block; min-width: 42px; padding: .5rem .75rem; margin: 0 .2rem; border: 1px solid var(--border); border-radius: 8px; color: var(--navy); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.no-results { text-align: center; padding: 4rem 0; }

/* ---------- Comments / forms ---------- */
.comments-area { margin-top: 3rem; }
input[type=text], input[type=email], input[type=url], input[type=search], input[type=password], textarea {
	width: 100%; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 1rem;
}
input:focus, textarea:focus { outline: none; border-color: var(--orange); }

/* ---------- Video lightbox ---------- */
.va-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.va-modal__backdrop { position: absolute; inset: 0; background: rgba(1,22,51,.85); }
.va-modal__dialog { position: relative; z-index: 1; width: min(960px, 100%); }
.va-modal__frame { position: relative; padding-top: 56.25%; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.va-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.va-modal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #fff; color: var(--navy); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.va-modal__close:hover { background: var(--orange); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.welcome__grid { grid-template-columns: 1fr; }
	.why__grid { grid-template-columns: 1fr; gap: 2rem; }
	.why__media { margin-bottom: 3rem; position: relative; min-height: 0; }
	.why__img { position: static; height: auto; border-radius: 0; }
	.quote-card { position: absolute; right: 0; bottom: 24px; }
	.why__content { padding: 3rem 24px; }
	.corevalue { position: static; width: 100%; margin-top: -40px; }
	.services__grid, .how__grid, .blog__grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
	.funfacts__card { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 781px) {
	.main-navigation { position: absolute; top: 100%; left: 0; right: 0; margin: 0; background: #fff; border-top: 1px solid var(--border); display: none; box-shadow: 0 20px 30px rgba(1,22,51,.1); }
	.main-navigation.is-open { display: block; }
	.main-navigation ul { flex-direction: column; gap: 0; padding: 1rem 24px; }
	.main-navigation li { padding: .6rem 0; border-bottom: 1px solid var(--border); }
	.nav-toggle { display: block; }
	.header-cta { display: none; }
	.site-header { position: static; }
	.site-header__inner { position: relative; min-height: 72px; }
	.site-topbar__inner { flex-direction: column; align-items: flex-start; gap: .35rem; padding-top: .6rem; padding-bottom: .6rem; min-height: 0; }
	.site-topbar__contact { gap: 1.25rem; }
	.hero__inner { padding: 4rem 24px 6rem; }
	.hero { border-bottom-right-radius: 60px; }
	.hero__foot { flex-direction: column; align-items: stretch; gap: 1.5rem; margin-top: -50px; margin-bottom: 3rem; }
	.hero__logos { order: 2; justify-content: center; gap: 2rem; }
	.video-card { order: 1; flex-wrap: wrap; justify-content: center; text-align: center; }
	.feature-row, .why__grid, .services__grid, .how__grid, .blog__grid, .archive-grid, .cta__inner { grid-template-columns: 1fr; }
	.services__grid, .how__grid, .blog__grid, .archive-grid { grid-template-columns: 1fr; }
	.compare-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
	.quote-card { position: static; left: auto; right: auto; bottom: auto; margin-top: -50px; }
	.why__media { margin-bottom: 1.5rem; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.cta__inner { flex-direction: column; align-items: flex-start; }
}
