:root {
	--wcl-primary: #1479ff;
	--wcl-primary-dark: #0f5fd0;
	--wcl-navy-dark: #061426;
	--wcl-navy: #0b1f3a;
	--wcl-text: #101827;
	--wcl-text-muted: #667085;
	--wcl-bg: #f6f8fb;
	--wcl-white: #ffffff;
	--wcl-success: #16a34a;
	--wcl-warning: #f97316;
	--wcl-border: rgba(17, 24, 39, 0.08);
	--wcl-shadow: 0 20px 60px rgba(6, 20, 38, 0.12);
	--wcl-shadow-lg: 0 32px 80px rgba(6, 20, 38, 0.18);
	--wcl-radius-sm: 18px;
	--wcl-radius: 28px;
	--wcl-radius-lg: 36px;
	--wcl-container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, sans-serif;
	color: var(--wcl-text);
	background: var(--wcl-bg);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container {
	width: min(calc(100% - 32px), var(--wcl-container));
	margin: 0 auto;
}

.section {
	padding: 46px 0;
}

.section--dark {
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.18), transparent 32%),
		linear-gradient(180deg, #08172c 0%, #061426 100%);
	color: var(--wcl-white);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wcl-primary);
	margin-bottom: 18px;
}

.section-label--hero,
.section-label--light {
	color: #7db3ff;
}

.section-heading {
	margin-bottom: 46px;
}

.section-heading--center {
	text-align: center;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.section-heading h2,
.why-copy h2,
.portfolio-copy h2,
.emergency-card h2 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 2.7rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.section-heading p,
.why-copy p,
.portfolio-copy p,
.emergency-card p,
.hero__content p {
	margin: 0;
	color: var(--wcl-text-muted);
	font-size: 1.05rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(180deg, #2890ff 0%, var(--wcl-primary) 100%);
	box-shadow: 0 16px 32px rgba(20, 121, 255, 0.28);
	color: var(--wcl-white);
	font-weight: 700;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(20, 121, 255, 0.36);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.play-button:focus-visible,
input:focus-visible {
	outline: 3px solid rgba(20, 121, 255, 0.25);
	outline-offset: 3px;
}

.button--secondary {
	background: var(--wcl-white);
	color: var(--wcl-text);
	border-color: rgba(17, 24, 39, 0.08);
	box-shadow: none;
}

.button--ghost,
.button--ghost-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: none;
}

.button--ghost-light {
	color: var(--wcl-white);
}

.button--sm {
	padding: 12px 22px;
	font-size: 0.95rem;
}

.button--full {
	width: 100%;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 18px 0;
	background: transparent;
	transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(6, 20, 38, 0.88);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.site-branding__link--footer {
	margin-bottom: 14px;
}

.custom-logo-link img {
	display: block;
	max-height: 48px;
	width: auto;
}

.site-brand-text {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}

.site-brand-text__accent {
	color: var(--wcl-primary);
}

.site-brand-text__main {
	color: var(--wcl-white);
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-nav a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.96rem;
	font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--wcl-white);
}

.site-header__cta {
	flex-shrink: 0;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--wcl-white);
}

.hero {
	position: relative;
	margin-top: -94px;
	padding: 160px 0 0;
	background:
		radial-gradient(circle at 12% 20%, rgba(20, 121, 255, 0.25), transparent 26%),
		radial-gradient(circle at 88% 18%, rgba(20, 121, 255, 0.15), transparent 22%),
		linear-gradient(180deg, #07172c 0%, #061426 100%);
	color: var(--wcl-white);
	overflow: hidden;
}

.hero__pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
	pointer-events: none;
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 56px;
	padding-bottom: 72px;
}

.hero__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-visual-image-wrap {
	width: min(100%, 720px);
}

.hero-visual-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.28));
}

.hero__content h1 {
	margin: 0 0 20px;
	font-size: clamp(2.9rem, 6vw, 3rem);
	
	max-width: 720px;
}

.hero__content p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.hero__trust {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 34px;
}

.hero__trust p {
	font-size: 0.96rem;
	color: rgba(255, 255, 255, 0.76);
}

.avatar-stack {
	display: flex;
	align-items: center;
}

.avatar-stack span,
.testimonial-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.82);
	margin-left: -10px;
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--wcl-white);
	background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

.avatar-stack span:first-child {
	margin-left: 0;
}

.avatar-stack span {
	overflow: hidden;
	background: #dbe7f7;
}

.avatar-stack span img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__stars,
.testimonial-card__stars {
	color: #fbbf24;
	letter-spacing: 0.18em;
	font-size: 0.92rem;
	font-weight: 700;
}

.hero-lab {
	position: relative;
	min-height: 540px;
}

.hero-lab__laptop {
	position: absolute;
	right: 52px;
	top: 68px;
	width: min(100%, 430px);
	transform: perspective(1200px) rotateY(-15deg) rotateX(9deg);
	filter: drop-shadow(0 50px 90px rgba(0, 0, 0, 0.38));
}

.hero-lab__screen {
	position: relative;
	padding-top: 66%;
	border-radius: 28px 28px 14px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01)),
		linear-gradient(180deg, #16253f 0%, #0f1a2f 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-lab__wpmark {
	position: absolute;
	inset: 50%;
	width: 148px;
	height: 148px;
	margin: -74px 0 0 -74px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.88);
	display: grid;
	place-items: center;
	font-size: 4.25rem;
	font-family: Georgia, serif;
	font-weight: 700;
}

.hero-lab__base {
	position: relative;
	width: 116%;
	height: 22px;
	left: -8%;
	margin-top: 6px;
	border-radius: 0 0 30px 30px;
	background: linear-gradient(180deg, #5e6675 0%, #262d3a 100%);
}

.hero-lab__shield,
.hero-lab__badge,
.hero-lab__panel,
.hero-lab__metrics {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: rgba(12, 28, 52, 0.92);
	box-shadow: var(--wcl-shadow-lg);
	backdrop-filter: blur(10px);
}

.hero-lab__badge {
	left: 12px;
	top: 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
}

.hero-lab__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 18px rgba(34, 197, 94, 0.8);
}

.hero-lab__badge strong,
.hero-lab__panel,
.hero-lab__metrics p {
	color: var(--wcl-white);
}

.hero-lab__badge small {
	display: block;
	color: rgba(255, 255, 255, 0.6);
}

.hero-lab__shield {
	left: 88px;
	top: 188px;
	display: grid;
	place-items: center;
	width: 102px;
	height: 118px;
	font-size: 2.4rem;
	color: #7dd3fc;
	background: linear-gradient(180deg, rgba(20, 121, 255, 0.34), rgba(11, 31, 58, 0.98));
	clip-path: polygon(50% 0%, 100% 18%, 84% 88%, 50% 100%, 16% 88%, 0% 18%);
	border-radius: 0;
	border: 0;
}

.hero-lab__panel {
	right: 0;
	padding: 14px 18px;
	min-width: 190px;
	font-size: 0.94rem;
	font-weight: 600;
}

.hero-lab__panel--plugins {
	top: 86px;
}

.hero-lab__panel--theme {
	top: 166px;
}

.hero-lab__panel--security {
	top: 246px;
}

.hero-lab__panel--fixes {
	top: 326px;
}

.hero-lab__metrics {
	left: 152px;
	bottom: 52px;
	padding: 18px 18px 12px;
	width: 190px;
}

.hero-lab__gauge {
	position: relative;
	display: grid;
	place-items: end center;
	width: 120px;
	height: 64px;
	margin: 0 auto 8px;
	border-top-left-radius: 120px;
	border-top-right-radius: 120px;
	border: 10px solid rgba(255, 255, 255, 0.12);
	border-bottom: 0;
	overflow: hidden;
}

.hero-lab__gauge::before {
	content: "";
	position: absolute;
	inset: -10px;
	border-top-left-radius: 120px;
	border-top-right-radius: 120px;
	border: 10px solid transparent;
	border-top-color: #22c55e;
	border-right-color: var(--wcl-primary);
	transform: rotate(-12deg);
}

.hero-lab__gauge span {
	position: relative;
	top: 8px;
	font-size: 1.15rem;
	font-weight: 800;
}

.hero-lab__metrics p {
	text-align: center;
	margin: 0;
	font-size: 0.92rem;
}

.stats-bar {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	margin-top: -6px;
	padding: 10px 18px 30px 18px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(17, 24, 39, 0.05);
	border-radius: 20px;
	box-shadow: 0 18px 48px rgba(6, 20, 38, 0.12);
	transform: translateY(42px);
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 18px;
	text-align: left;
}

.stat-item + .stat-item {
	border-left: 1px solid rgba(17, 24, 39, 0.06);
}

.stat-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 14px;
	background: #f7f9fc;
	color: var(--wcl-primary);
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.stat-item__icon svg {
	display: block;
	width: 42px;
	height: 42px;
}

.stat-item__icon--gold {
	color: #f59e0b;
}

.stat-item__icon--orange {
	color: #f97316;
}

.stat-item__icon--teal {
	color: #0f766e;
}

.stat-item__icon--slate {
	color: #1f2937;
}

.stat-item__icon--blue {
	color: #2563eb;
}

.stat-item__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.stat-item strong,
.media-card__stats strong {
	font-size: 1rem;
	line-height: 1;
	letter-spacing: -0.04em;	
	color: #000000;
}

.stat-item span:last-child,
.media-card__stats span {
	display: flex;
    color: var(--wcl-text-muted);
    font-size: 0.82rem;
    line-height: 1.3;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.services-section {
	padding-top: 35px;
	padding-bottom: 0px;
}

.cards-grid {
	display: grid;
	gap: 24px;
}

.cards-grid--services {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.testimonial-card,
.pricing-card,
.archive-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: var(--wcl-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--wcl-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--wcl-shadow-lg);
	border-color: rgba(20, 121, 255, 0.18);
}

.service-card__icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	margin-bottom: 18px;
	color: var(--wcl-white);
	font-size: 1rem;
	font-weight: 800;
}

.is-blue { background: linear-gradient(135deg, #1479ff, #60a5fa); }
.is-green { background: linear-gradient(135deg, #22c55e, #4ade80); }
.is-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.is-indigo { background: linear-gradient(135deg, #6366f1, #818cf8); }
.is-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.is-sky { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }

.service-card h3,
.testimonial-card h3,
.project-card h3,
.pricing-card h3,
.archive-card__title {
	margin: 0 0 12px;
	font-size: 1.35rem;
	line-height: 1.2;
}

.service-card p,
.testimonial-card p,
.archive-card__excerpt {
	margin: 0;
	color: var(--wcl-text-muted);
}

.service-card__arrow {
	display: inline-flex;
	margin-top: 22px;
	color: var(--wcl-primary);
	font-size: 1.25rem;
	font-weight: 700;
}

.section-actions,
.section-note {
	text-align: center;
	margin-top: 34px;
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 46px;
	align-items: center;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: grid;
	gap: 14px;
}

.check-list li {
	position: relative;
	padding-left: 34px;
	font-weight: 500;
}

.check-list li::before,
.pricing-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.12);
	color: var(--wcl-success);
	font-size: 0.85rem;
	font-weight: 800;
}

.media-card {
	border-radius: var(--wcl-radius-lg);
	background: var(--wcl-white);
	box-shadow: var(--wcl-shadow-lg);
	padding: 20px;
}

.media-card__scene {
	position: relative;
	min-height: 360px;
	border-radius: 28px;
	overflow: hidden;
}

.media-card__scene::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 20, 38, 0.04), rgba(6, 20, 38, 0.18));
	pointer-events: none;
}

.media-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.play-button {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	display: inline-grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 0;
	border-radius: 50%;
	background: var(--wcl-white);
	color: var(--wcl-primary);
	box-shadow: 0 24px 50px rgba(20, 121, 255, 0.22);
	cursor: pointer;
	font-size: 1.2rem;
}

.play-button::before {
	content: "▶";
}

.media-card__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding: 24px 8px 8px;
	text-align: center;
}

.process-section {
	padding-top: 20px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.process-card {
	position: relative;
	text-align: center;
	padding: 8px 12px 0;
}

.process-card__line {
	position: absolute;
	top: 36px;
	left: 56%;
	width: 88%;
	border-top: 2px dashed rgba(20, 121, 255, 0.18);
}

.process-card:last-child .process-card__line {
	display: none;
}

.process-card__icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin-bottom: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 18px 34px rgba(20, 121, 255, 0.08);
}

.process-card__icon-wrap::before,
.process-card__icon-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 50%;
	background: #d8e6ff;
}

.process-card__icon-wrap::before {
	left: -16px;
}

.process-card__icon-wrap::after {
	right: -16px;
}

.process-card__icon {
	display: inline-flex;
	place-items: center;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(20, 121, 255, 0.1);
	color: var(--wcl-primary);
	box-shadow: inset 0 0 0 1px rgba(20, 121, 255, 0.08);
}

.process-card__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.process-card__icon.is-green {
	background: rgba(34, 197, 94, 0.12);
	color: #22c55e;
}

.process-card__icon.is-purple {
	background: rgba(139, 92, 246, 0.12);
	color: #8b5cf6;
}

.process-card__icon.is-orange {
	background: rgba(249, 115, 22, 0.12);
	color: #f97316;
}

.process-card__number {
	color: var(--wcl-text);
	font-size: 0.92rem;
	font-weight: 800;
	margin-bottom: 6px;
}

.process-card h3 {
	margin: 0 0 8px;
	font-size: 1.28rem;
}

.process-card p {
	margin: 0;
	color: var(--wcl-text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.portfolio-layout {
	display: grid;
	grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
	gap: 28px;
	align-items: center;
}

.portfolio-copy {
	max-width: 290px;
}

.portfolio-copy p {
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 24px;
	font-size: 0.98rem;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.project-card {
	padding: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.98);
	color: var(--wcl-text);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.project-card__art {
	padding: 14px;
	border-radius: 12px;
	background:
		linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
	min-height: 172px;
	margin-bottom: 14px;
	overflow: hidden;
}

.project-card__window {
	display: flex;
	gap: 6px;
	margin-bottom: 12px;
}

.project-card__window span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(16, 24, 39, 0.18);
}

.project-card__widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.project-card__widgets i {
	display: block;
	min-height: 84px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(20, 121, 255, 0.16), rgba(20, 121, 255, 0.04)),
		var(--wcl-white);
	box-shadow: inset 0 0 0 1px rgba(20, 121, 255, 0.1);
}

.project-card__art--event .project-card__widgets i:nth-child(1) {
	background:
		linear-gradient(180deg, rgba(20, 121, 255, 0.22), rgba(20, 121, 255, 0.06)),
		linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
}

.project-card__art--event .project-card__widgets i:nth-child(2) {
	background:
		repeating-linear-gradient(180deg, rgba(20, 121, 255, 0.1), rgba(20, 121, 255, 0.1) 8px, transparent 8px, transparent 16px),
		#ffffff;
}

.project-card__art--event .project-card__widgets i:nth-child(3) {
	background:
		radial-gradient(circle at 50% 26%, rgba(20, 121, 255, 0.14) 0 18px, transparent 18px),
		#ffffff;
}

.project-card__art--membership .project-card__widgets i:nth-child(1),
.project-card__art--membership .project-card__widgets i:nth-child(2),
.project-card__art--membership .project-card__widgets i:nth-child(3) {
	background:
		linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.04)),
		linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

.project-card__art--membership .project-card__widgets i::before,
.project-card__art--store .project-card__widgets i::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	margin: 14px auto 10px;
	border-radius: 50%;
	background: rgba(20, 121, 255, 0.14);
}

.project-card__art--membership .project-card__widgets i::after,
.project-card__art--store .project-card__widgets i::after {
	content: "";
	display: block;
	width: calc(100% - 20px);
	height: 8px;
	margin: 0 auto 6px;
	border-radius: 999px;
	background: rgba(20, 121, 255, 0.12);
	box-shadow: 0 14px 0 rgba(20, 121, 255, 0.08);
}

.project-card__art--store {
	background:
		linear-gradient(180deg, #1f5db7 0%, #153f83 100%);
}

.project-card__art--store .project-card__window span {
	background: rgba(255, 255, 255, 0.5);
}

.project-card__art--store .project-card__widgets i {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
		rgba(255, 255, 255, 0.96);
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(20, 121, 255, 0.08);
	color: #5b6bdb;
	font-size: 0.76rem;
	font-weight: 600;
}

.project-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.project-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(125, 179, 255, 0.35);
}

.project-dots .is-active {
	width: 18px;
	border-radius: 999px;
	background: var(--wcl-primary);
}

.cards-grid--testimonials {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.testimonials-section {
	padding-top: 84px;
}

.testimonial-card {
	padding: 24px 22px 20px;
	border-radius: 18px;
}

.testimonial-card p {
	font-size: 0.92rem;
	line-height: 1.7;
}

.testimonial-card__quote {
	width: 26px;
	height: 20px;
	margin-bottom: 14px;
	color: rgba(147, 197, 253, 0.9);
}

.testimonial-card__quote svg {
	display: block;
	width: 100%;
	height: 100%;
}

.testimonial-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 18px;
}

.testimonial-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 0;
	min-width: 0;
}

.testimonial-card__meta span {
	color: var(--wcl-text-muted);
	font-size: 0.78rem;
	white-space: nowrap;
}

.testimonial-card__avatar {
	width: 40px;
	height: 40px;
	margin-left: 0;
	flex: 0 0 40px;
	overflow: hidden;
	border: 0;
	background: #eaf1fb;
}

.testimonial-card__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card h3 {
	margin: 0 0 4px;
	font-size: 0.96rem;
	line-height: 1.2;
}

.testimonial-card__stars {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
	margin-top: 0;
}

.testimonial-card__stars span {
	display: block;
	width: 9px;
	height: 9px;
	background: #fbbf24;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.testimonial-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(20, 121, 255, 0.22);
}

.testimonial-dots .is-active {
	width: 18px;
	border-radius: 999px;
	background: var(--wcl-primary);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.pricing-card {
	padding-top: 24px;
}

.pricing-card.is-popular {
	border-color: rgba(20, 121, 255, 0.24);
	box-shadow: 0 24px 70px rgba(20, 121, 255, 0.18);
}

.pricing-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--wcl-primary);
	color: var(--wcl-white);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pricing-card__label {
	display: block;
	font-size: 0.92rem;
	color: var(--wcl-text-muted);
	margin-bottom: 6px;
}

.pricing-card__price {
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	margin-bottom: 22px;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: grid;
	gap: 12px;
}

.pricing-card li {
	position: relative;
	padding-left: 32px;
	color: var(--wcl-text-muted);
}

.emergency-section {
	padding-top: 28px;
}

.emergency-card {
	display: grid;
	grid-template-columns: 88px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	border-radius: 20px;
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.18), transparent 24%),
		linear-gradient(180deg, #0b1f3a 0%, #061426 100%);
	color: var(--wcl-white);
	box-shadow: var(--wcl-shadow-lg);
}

.emergency-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: rgba(20, 121, 255, 0.14);
	color: var(--wcl-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.emergency-card__icon svg {
	display: block;
	width: 30px;
	height: 30px;
}

.emergency-card__copy h2 {
	margin-bottom: 6px;
	font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.emergency-card__copy p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	max-width: 620px;
}

.emergency-card__button {
	gap: 10px;
	padding: 13px 20px;
	border-color: rgba(116, 165, 255, 0.35);
	background: rgba(8, 24, 46, 0.6);
	box-shadow: none;
	white-space: nowrap;
}

.emergency-card__button:hover,
.emergency-card__button:focus-visible {
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.emergency-card__button-icon {
	position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
}

.emergency-card__button-icon::before {
	content: "";
	position: absolute;
	inset: 0 2px;
	background: #fbbf24;
	clip-path: polygon(46% 0, 100% 0, 62% 42%, 100% 42%, 20% 100%, 44% 56%, 8% 56%);
}

.site-footer {
	padding: 80px 0 28px;
	background: #050f1e;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
	gap: 28px;
	padding-bottom: 36px;
}

.site-footer h3 {
	margin: 0 0 16px;
	color: var(--wcl-white);
	font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer input::placeholder {
	color: rgba(255, 255, 255, 0.66);
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.social-links a {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--wcl-white);
	font-size: 0.82rem;
	font-weight: 700;
}

.newsletter-form {
	display: grid;
	gap: 12px;
}

.newsletter-form input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--wcl-white);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.92rem;
}

.site-footer__legal {
	display: flex;
	gap: 20px;
}

.page-shell {
	padding: 96px 0;
}

.archive-list {
	display: grid;
	gap: 24px;
}

.archive-card__meta {
	margin-bottom: 12px;
	color: var(--wcl-text-muted);
	font-size: 0.92rem;
}

.section-heading--light h2,
.section-heading--light p {
	color: var(--wcl-white);
}

.inner-hero {
	position: relative;
	padding: 154px 0 92px;
	margin-top: -94px;
	/* padding: 160px 0 0; */
	background:rgba(6, 20, 38, 0.88);

		/* radial-gradient(circle at top left, rgba(20, 121, 255, 0.22), transparent 28%),
		radial-gradient(circle at bottom right, rgba(20, 121, 255, 0.12), transparent 24%),
		linear-gradient(180deg, #08172c 0%, #061426 100%); */
		
	color: var(--wcl-white);
	overflow: hidden;
}

.inner-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
	pointer-events: none;
}

.inner-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 36px;
	align-items: center;
}

.inner-hero__content h1 {
	margin: 0 0 18px;
	font-size: clamp(2.7rem, 5vw, 4.35rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	max-width: 12ch;
}

.inner-hero__content p {
	max-width: 640px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.05rem;
}

.inner-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.inner-hero__highlights li {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	font-weight: 500;
}

.inner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.inner-hero__panel-card {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(10, 31, 58, 0.92), rgba(6, 20, 38, 0.94));
	box-shadow: var(--wcl-shadow-lg);
}

.inner-hero__panel-label {
	display: inline-flex;
	margin-bottom: 18px;
	color: #8cbcff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.inner-hero__panel-card h2 {
	margin: 0 0 12px;
	font-size: 1.65rem;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.inner-hero__panel-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.inner-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.inner-hero__metric {
	padding: 16px 14px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-hero__metric strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.35rem;
	line-height: 1;
}

.inner-hero__metric span {
	display: block;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9rem;
	line-height: 1.45;
}

.inner-page-section {
	padding: 84px 0;
}

.inner-page-section--soft {
	background: linear-gradient(180deg, rgba(20, 121, 255, 0.04), rgba(255, 255, 255, 0));
}

.inner-page-section--dark {
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.16), transparent 28%),
		linear-gradient(180deg, #08172c 0%, #061426 100%);
	color: var(--wcl-white);
}

.content-shell {
	max-width: 900px;
	margin: 0 auto;
	padding: 38px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 30px;
	background: var(--wcl-white);
	box-shadow: 0 20px 70px rgba(6, 20, 38, 0.08);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 1.5em 0 0.6em;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
	color: var(--wcl-text-muted);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.2rem;
}

.entry-content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid var(--wcl-primary);
	background: rgba(20, 121, 255, 0.05);
	border-radius: 0 18px 18px 0;
}

.split-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: start;
}

.split-panel h2,
.contact-panel h2 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 3vw, 2.7rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.split-panel p,
.contact-panel p {
	margin: 0;
	color: var(--wcl-text-muted);
}

.feature-panel,
.contact-panel {
	padding: 28px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: var(--wcl-white);
	box-shadow: 0 20px 56px rgba(6, 20, 38, 0.08);
}

.feature-panel {
	display: grid;
	gap: 16px;
}

.feature-panel__item {
	display: grid;
	gap: 8px;
	padding: 18px 18px 18px 22px;
	border-radius: 22px;
	background: var(--wcl-bg);
	border: 1px solid rgba(17, 24, 39, 0.06);
	position: relative;
}

.feature-panel__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, #2890ff 0%, var(--wcl-primary) 100%);
}

.feature-panel__item strong {
	font-size: 1.02rem;
}

.feature-panel__item span {
	color: var(--wcl-text-muted);
}

.internal-cards {
	display: grid;
	gap: 24px;
}

.internal-cards--services,
.internal-cards--portfolio {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.internal-cards--solutions {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.internal-card {
	padding: 28px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: var(--wcl-white);
	box-shadow: 0 18px 56px rgba(6, 20, 38, 0.08);
}

.internal-card h3 {
	margin: 0 0 12px;
	font-size: 1.45rem;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.internal-card p {
	margin: 0;
	color: var(--wcl-text-muted);
}

.internal-card__badge {
	width: 52px;
	height: 52px;
	margin-bottom: 22px;
	border-radius: 18px;
	background: linear-gradient(180deg, #2890ff 0%, var(--wcl-primary) 100%);
	box-shadow: 0 14px 30px rgba(20, 121, 255, 0.22);
}

.internal-card__badge.is-green {
	background: linear-gradient(180deg, #41d37a 0%, #16a34a 100%);
	box-shadow: 0 14px 30px rgba(22, 163, 74, 0.22);
}

.internal-card__badge.is-indigo {
	background: linear-gradient(180deg, #7c72ff 0%, #5a55ea 100%);
	box-shadow: 0 14px 30px rgba(90, 85, 234, 0.2);
}

.internal-card__badge.is-purple {
	background: linear-gradient(180deg, #8b6dff 0%, #6d46ff 100%);
	box-shadow: 0 14px 30px rgba(109, 70, 255, 0.2);
}

.internal-card__badge.is-orange {
	background: linear-gradient(180deg, #fb9b4a 0%, #f97316 100%);
	box-shadow: 0 14px 30px rgba(249, 115, 22, 0.2);
}

.internal-card__badge.is-sky {
	background: linear-gradient(180deg, #35bef2 0%, #1479ff 100%);
	box-shadow: 0 14px 30px rgba(20, 121, 255, 0.2);
}

.internal-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 22px 0 0;
	list-style: none;
}

.internal-list li {
	position: relative;
	padding-left: 22px;
	color: var(--wcl-text-muted);
}

.internal-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wcl-primary);
	transform: translateY(-50%);
}

.internal-list--compact {
	margin-top: 18px;
}

.internal-card--solution {
	position: relative;
	overflow: hidden;
}

.internal-card--solution::after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(20, 121, 255, 0.12), transparent 68%);
	pointer-events: none;
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.metric-card {
	padding: 28px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
	display: block;
	margin-bottom: 12px;
	font-size: 1.3rem;
	line-height: 1.1;
}

.metric-card span {
	color: rgba(255, 255, 255, 0.72);
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(20, 121, 255, 0.1);
	color: var(--wcl-primary);
	font-size: 0.85rem;
	font-weight: 700;
}

.internal-card__preview,
.blog-card__thumb-placeholder {
	min-height: 210px;
	margin-bottom: 22px;
	border-radius: 24px;
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.24), transparent 30%),
		linear-gradient(180deg, #0d2240 0%, #08172c 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

.internal-card__preview::before,
.blog-card__thumb-placeholder::before {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 12px, transparent 12px, transparent 30px);
	opacity: 0.85;
}

.internal-card__result {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(17, 24, 39, 0.08);
	font-weight: 600;
}

.contact-panel__placeholder {
	display: grid;
	place-items: center;
	min-height: 280px;
	margin-top: 22px;
	border: 1px dashed rgba(20, 121, 255, 0.28);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(20, 121, 255, 0.06), rgba(20, 121, 255, 0.02));
	color: var(--wcl-primary);
	font-weight: 700;
}

.contact-panel__content {
	margin-top: 24px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-card,
.archive-card {
	overflow: hidden;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: var(--wcl-white);
	box-shadow: 0 18px 56px rgba(6, 20, 38, 0.08);
}

.blog-card__thumb {
	min-height: 220px;
	background: #dce7f7;
}

.blog-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__body,
.archive-card {
	padding: 24px;
}

.blog-card--compact .blog-card__body {
	padding: 24px;
}

.archive-card__title {
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.archive-card__title a:hover,
.archive-card__title a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--wcl-primary);
}

.archive-card__excerpt {
	margin-top: 14px;
	color: var(--wcl-text-muted);
}

.text-link {
	display: inline-flex;
	margin-top: 18px;
	color: var(--wcl-primary);
	font-weight: 700;
}

.search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	margin-bottom: 30px;
	padding: 18px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	background: var(--wcl-white);
	box-shadow: 0 16px 48px rgba(6, 20, 38, 0.08);
}

.search-form__input {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	border-radius: 16px;
	background: var(--wcl-bg);
}

.single-layout {
	max-width: 900px;
	margin: 0 auto;
}

.single-article {
	padding: 34px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 30px;
	background: var(--wcl-white);
	box-shadow: 0 20px 70px rgba(6, 20, 38, 0.08);
}

.single-article__thumb {
	margin-bottom: 28px;
	overflow: hidden;
	border-radius: 24px;
}

.single-article__thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.empty-state {
	max-width: 680px;
	margin: 0 auto;
	padding: 40px;
	border-radius: 30px;
	background: var(--wcl-white);
	border: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: 0 20px 60px rgba(6, 20, 38, 0.08);
	text-align: center;
}

.empty-state h2 {
	margin: 0 0 14px;
	font-size: 2rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.empty-state p {
	margin: 0;
	color: var(--wcl-text-muted);
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 34px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	border-radius: 999px;
	background: var(--wcl-white);
	font-weight: 600;
}

.page-numbers.current {
	background: var(--wcl-primary);
	border-color: var(--wcl-primary);
	color: var(--wcl-white);
}

.service-landing-entry--quick-fixes {
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.08), transparent 22%),
		linear-gradient(180deg, #f9fbff 0%, #f4f8fe 100%);
}

.service-landing-entry--quick-fixes > .wp-block-group:first-child,
.service-landing-entry--quick-fixes > .alignfull:first-child {
	margin-top: 0;
}

.service-landing-entry--quick-fixes .wp-block-columns,
.service-landing-entry--quick-fixes .wp-block-group {
	box-sizing: border-box;
}

.service-landing-entry--quick-fixes .wp-block-columns {
	margin-bottom: 0;
}

.quick-fixes-page {
	background:
		radial-gradient(circle at top left, rgba(20, 121, 255, 0.08), transparent 22%),
		linear-gradient(180deg, #f9fbff 0%, #f4f8fe 100%);
}

.quick-fixes-topbar {
	padding-top: 86px;
	background: linear-gradient(180deg, #08172c 0%, #061426 100%);
	color: rgba(255, 255, 255, 0.88);
}

.quick-fixes-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0 18px;
	font-size: 0.92rem;
}

.quick-fixes-topbar__item {
	position: relative;
	padding-right: 20px;
}

.quick-fixes-topbar__item::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-50%);
}

.quick-fixes-topbar__button {
	display: inline-flex;
}

.quick-fixes-topbar__button .wp-block-button__link,
a.quick-fixes-topbar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: var(--wcl-white);
	font-weight: 600;
	white-space: nowrap;
}

.quick-fixes-hero {
	position: relative;
	padding: 34px 0 72px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.36)),
		url("../images/skyline-background.png") center bottom / cover no-repeat;
}

.quick-fixes-hero::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.58)),
		radial-gradient(circle at left top, rgba(20, 121, 255, 0.08), transparent 26%);
	pointer-events: none;
}

.quick-fixes-hero::after {
	display: none;
}

.quick-fixes-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
	gap: 42px;
	align-items: start;
	padding: 46px 0 34px;
}

.quick-fixes-hero__grid > .wp-block-column {
	flex-basis: auto;
}

.quick-fixes-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(249, 115, 22, 0.1);
	color: #e65d0e;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.quick-fixes-hero__content h1 {
	margin: 18px 0 16px;
	font-size: clamp(2rem, 3vw, 4rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.quick-fixes-hero__accent {
	color: var(--wcl-primary);
}

.quick-fixes-hero__lead {
	max-width: 600px;
	margin: 0;
	color: #334155;
	font-size: 1.08rem;
	line-height: 1.75;
}

.quick-fixes-form-card .wp-block-shortcode {
	padding: 18px;
	border: 1px dashed rgba(20, 121, 255, 0.24);
	border-radius: 16px;
	background: rgba(20, 121, 255, 0.04);
}

.quick-fixes-trust-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
	margin-top: 30px;
	max-width: 620px;
}

.quick-fixes-trust-grid > .wp-block-column {
	flex-basis: auto;
}

.quick-fixes-trust-grid__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.quick-fixes-trust-grid__icon-image {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	min-width: 22px;
	max-width: 22px;
	margin: 0;
	line-height: 0;
}

.quick-fixes-trust-grid__icon-image img {
	display: block;
	width: 22px;
	height: 22px;
}

.quick-fixes-trust-grid__icon-image .wp-element-caption {
	display: none;
}

.quick-fixes-trust-grid__icon,
.quick-fixes-problems__icon,
.quick-fixes-cta__icon,
.quick-fixes-fix-card__icon {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: linear-gradient(180deg, #2890ff 0%, var(--wcl-primary) 100%);
	box-shadow: 0 10px 20px rgba(20, 121, 255, 0.16);
	position: relative;
}

.quick-fixes-trust-grid__icon::before,
.quick-fixes-problems__icon::before,
.quick-fixes-cta__icon::before,
.quick-fixes-fix-card__icon::before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.92);
}

.quick-fixes-trust-grid__item strong,
.quick-fixes-problems__item strong {
	display: block;
	font-size: 0.95rem;
	line-height: 1.2;
}

.quick-fixes-trust-grid__copy {
	min-width: 0;
}

.quick-fixes-trust-grid__copy p {
	margin: 0;
}

.quick-fixes-trust-grid__copy strong {
	display: block;
	margin-bottom: 0;
	color: #0f172a;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.1;
}

.quick-fixes-trust-grid__copy br {
	display: none;
}

.quick-fixes-trust-grid__copy p {
	display: block;
	margin: 0;
	color: #64748b;
	font-size: 0.92rem;
	line-height: 1.2;
}

.quick-fixes-rating {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 28px;
	max-width: 520px;
}

.quick-fixes-rating__avatars {
	display: flex;
	align-items: center;
}

.quick-fixes-rating__avatar {
	margin: 0 0 0 -10px;
	width: 54px;
}

.quick-fixes-rating__avatar:first-child {
	margin-left: 0;
}

.quick-fixes-rating__avatar img,
.quick-fixes-testimonial-card__author img,
.quick-fixes-form-card__footer-avatars img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quick-fixes-rating__avatar img {
	border: 3px solid var(--wcl-white);
	border-radius: 50%;
	box-shadow: 0 12px 24px rgba(6, 20, 38, 0.1);
}

.quick-fixes-rating__stars {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 4px;
	color: #0f172a;
	font-size: 1rem;
	line-height: 1.2;
}

.quick-fixes-rating__stars-mark {
	color: #f5b400;
	letter-spacing: 0.08em;
	font-weight: 700;
}

.quick-fixes-rating__text {
	margin: 0;
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.55;
}

.quick-fixes-form-card {
	padding: 30px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

.quick-fixes-form-card h2 {
	margin: 0 0 10px;
	font-size: 2rem;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.quick-fixes-form-card > p {
	margin: 0 0 22px;
	color: var(--wcl-text-muted);
}

.quick-fixes-form {
	display: grid;
	gap: 16px;
}

.quick-fixes-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.quick-fixes-field {
	display: grid;
	gap: 8px;
}

.quick-fixes-field label,
.quick-fixes-field legend {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wcl-text);
}

.quick-fixes-field input,
.quick-fixes-field select,
.quick-fixes-field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	border-radius: 14px;
	background: #fff;
	color: var(--wcl-text);
}

.quick-fixes-field textarea {
	resize: vertical;
	min-height: 124px;
}

.quick-fixes-field small {
	color: var(--wcl-text-muted);
	font-size: 0.78rem;
}

.quick-fixes-fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

.quick-fixes-fieldset label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--wcl-text-muted);
	font-weight: 500;
}

.quick-fixes-fieldset input {
	width: auto;
	padding: 0;
}

.quick-fixes-form-card__footer {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.quick-fixes-form-card__footer-avatars {
	display: flex;
}

.quick-fixes-form-card__footer-avatars img {
	width: 34px;
	height: 34px;
	margin-left: -8px;
	border: 2px solid var(--wcl-white);
	border-radius: 50%;
}

.quick-fixes-form-card__footer-avatars img:first-child {
	margin-left: 0;
}

.quick-fixes-form-card__footer-copy {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--wcl-text-muted);
	font-size: 0.88rem;
}

.quick-fixes-form-card__footer-copy span {
	color: #f5b400;
}

.quick-fixes-form-card__footer-copy p {
	margin: 0;
}

.quick-fixes-stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin-top: 10px;
	padding: 20px 16px;
	border-radius: 20px;
	background: linear-gradient(180deg, #0b2141 0%, #061426 100%);
	box-shadow: 0 22px 54px rgba(6, 20, 38, 0.18);
}

.quick-fixes-stats__item {
	padding: 14px 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.quick-fixes-stats__item:first-child {
	border-left: 0;
}

.quick-fixes-stats__item strong {
	display: block;
	margin-bottom: 8px;
	color: var(--wcl-white);
	font-size: 2rem;
	line-height: 1;
}

.quick-fixes-stats__item span {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.94rem;
}

.quick-fixes-logos {
	margin-top: 18px;
	padding: 26px 30px;
	border: 1px solid rgba(17, 24, 39, 0.06);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 50px rgba(6, 20, 38, 0.06);
	text-align: center;
}

.quick-fixes-logos p {
	margin: 0 0 18px;
	color: #334155;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.quick-fixes-logos__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	align-items: center;
}

.quick-fixes-logos__grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 8px;
	color: #0f172a;
	font-size: 1.05rem;
	font-weight: 800;
}

.quick-fixes-section {
	padding: 44px 0;
}

.quick-fixes-section--soft {
	background: linear-gradient(180deg, rgba(20, 121, 255, 0.03), rgba(255, 255, 255, 0));
}

.quick-fixes-section--faq {
	padding-top: 24px;
}

.quick-fixes-section--cta {
	padding-bottom: 0;
}

.quick-fixes-section-heading h2 {
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.quick-fixes-testimonials,
.quick-fixes-fix-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.quick-fixes-testimonial-card,
.quick-fixes-fix-card {
	padding: 28px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 50px rgba(6, 20, 38, 0.08);
}

.quick-fixes-testimonial-card__stars {
	margin-bottom: 18px;
	color: #f5b400;
	font-size: 1rem;
	letter-spacing: 0.15em;
}

.quick-fixes-testimonial-card p {
	margin: 0;
	color: #334155;
}

.quick-fixes-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
}

.quick-fixes-testimonial-card__author img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
}

.quick-fixes-testimonial-card__author h3 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.quick-fixes-testimonial-card__author span {
	color: var(--wcl-text-muted);
	font-size: 0.9rem;
}

.quick-fixes-problems {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.quick-fixes-problems__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 22px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 34px rgba(6, 20, 38, 0.05);
}

.quick-fixes-fix-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-fixes-fix-card__icon {
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
}

.quick-fixes-fix-card__icon.is-red {
	background: linear-gradient(180deg, #ff7a7a 0%, #ff4c4c 100%);
}

.quick-fixes-fix-card__icon.is-green {
	background: linear-gradient(180deg, #4de38e 0%, #16a34a 100%);
}

.quick-fixes-fix-card__icon.is-purple {
	background: linear-gradient(180deg, #b785ff 0%, #8b5cf6 100%);
}

.quick-fixes-fix-card__icon.is-orange {
	background: linear-gradient(180deg, #ffbe74 0%, #f97316 100%);
}

.quick-fixes-fix-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	line-height: 1.25;
}

.quick-fixes-fix-card p {
	margin: 0;
	color: var(--wcl-text-muted);
	font-size: 0.95rem;
}

.quick-fixes-fix-card__result {
	display: inline-flex;
	margin-top: 18px;
	color: var(--wcl-success);
	font-weight: 700;
}

.quick-fixes-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.quick-fixes-step {
	position: relative;
	padding: 26px 22px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 42px rgba(6, 20, 38, 0.06);
	text-align: center;
}

.quick-fixes-step::after {
	content: "";
	position: absolute;
	top: 42px;
	right: -18px;
	width: 16px;
	height: 2px;
	background: rgba(20, 121, 255, 0.35);
}

.quick-fixes-step:last-child::after {
	display: none;
}

.quick-fixes-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: linear-gradient(180deg, #2890ff 0%, var(--wcl-primary) 100%);
	box-shadow: 0 16px 36px rgba(20, 121, 255, 0.18);
	color: var(--wcl-white);
	font-size: 1.25rem;
	font-weight: 800;
}

.quick-fixes-step h3 {
	margin: 0 0 10px;
	font-size: 1.12rem;
}

.quick-fixes-step p {
	margin: 0;
	color: var(--wcl-text-muted);
	font-size: 0.95rem;
}

.quick-fixes-faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.quick-fixes-faq__column {
	display: grid;
	gap: 14px;
}

.quick-fixes-faq__item {
	padding: 18px 20px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 38px rgba(6, 20, 38, 0.05);
}

.quick-fixes-faq__item summary {
	position: relative;
	padding-right: 26px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.quick-fixes-faq__item summary::-webkit-details-marker {
	display: none;
}

.quick-fixes-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	color: var(--wcl-primary);
	font-size: 1.25rem;
	line-height: 1;
}

.quick-fixes-faq__item[open] summary::after {
	content: "-";
}

.quick-fixes-faq__item p {
	margin: 14px 0 0;
	color: var(--wcl-text-muted);
}

.quick-fixes-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 30px 34px;
	border-radius: 28px 28px 0 0;
	background: linear-gradient(90deg, #0f3d9e 0%, #1479ff 100%);
	color: var(--wcl-white);
	box-shadow: 0 18px 44px rgba(20, 121, 255, 0.18);
}

.quick-fixes-cta__content {
	display: flex;
	align-items: center;
	gap: 18px;
}

.quick-fixes-cta__icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.quick-fixes-cta__icon::before {
	background: rgba(255, 255, 255, 0.92);
}

.quick-fixes-cta h2 {
	margin: 0 0 8px;
	font-size: 2rem;
	line-height: 1.08;
}

.quick-fixes-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

.quick-fixes-cta .button--secondary {
	border-color: rgba(255, 255, 255, 0.16);
	background: var(--wcl-white);
	color: var(--wcl-primary);
}

@media (max-width: 1140px) {
	.cards-grid--services,
	.cards-grid--testimonials {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pricing-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.project-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-layout,
	.split-layout,
	.hero__grid,
	.inner-hero__grid,
	.split-panel,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		order: -1;
	}

	.inner-hero__panel {
		max-width: 620px;
	}

	.internal-cards--services,
	.internal-cards--portfolio,
	.internal-cards--solutions,
	.metrics-grid,
	.quick-fixes-testimonials,
	.quick-fixes-problems,
	.quick-fixes-fix-grid,
	.quick-fixes-steps,
	.quick-fixes-logos__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quick-fixes-hero__grid,
	.quick-fixes-faq {
		grid-template-columns: 1fr;
	}

	.quick-fixes-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hero-visual-image-wrap {
		width: min(100%, 620px);
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.menu-toggle {
		display: inline-flex;
	}

	.site-header__cta {
		display: none;
	}

	.primary-nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 16px;
		right: 16px;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 22px;
		background: rgba(6, 20, 38, 0.96);
		box-shadow: var(--wcl-shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.stats-bar,
	.media-card__stats,
	.process-grid,
	.pricing-grid,
	.inner-hero__metrics,
	.quick-fixes-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-card:nth-child(2) .process-card__line,
	.process-card:nth-child(4) .process-card__line {
		display: none;
	}

	.stat-item + .stat-item {
		border-left: 0;
	}

	.emergency-card,
	.site-footer__bottom {
		grid-template-columns: 1fr;
		display: grid;
		text-align: center;
	}

	.hero {
		padding-top: 144px;
	}

	.inner-hero {
		padding-top: 136px;
	}

	.quick-fixes-topbar__inner,
	.quick-fixes-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-lab {
		min-height: 480px;
	}

	.hero-lab__laptop {
		right: 16px;
	}

	.hero-visual-image-wrap {
		width: 100%;
		max-width: 560px;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 72px 0;
	}

	.hero__content h1 {
		font-size: 2.7rem;
	}

	.hero__trust,
	.hero__actions {
		align-items: stretch;
	}

	.hero__actions .button,
	.emergency-card .button {
		width: 100%;
	}

	.hero-visual-image-wrap {
		width: 100%;
	}

	.stats-bar,
	.cards-grid--services,
	.cards-grid--testimonials,
	.media-card__stats,
	.process-grid,
	.pricing-grid,
	.site-footer__grid,
	.inner-hero__metrics,
	.internal-cards--services,
	.internal-cards--portfolio,
	.internal-cards--solutions,
	.metrics-grid,
	.blog-grid,
	.search-form,
	.quick-fixes-faq__column,
	.quick-fixes-trust-grid {
		grid-template-columns: 1fr;
	}

	.quick-fixes-topbar {
		padding-top: 74px;
	}

	.quick-fixes-topbar__inner {
		align-items: stretch;
	}

	.quick-fixes-topbar__item {
		padding-right: 0;
	}

	.quick-fixes-topbar__item::after,
	.quick-fixes-step::after {
		display: none;
	}

	.quick-fixes-form__row,
	.quick-fixes-stats {
		grid-template-columns: 1fr;
	}

	.quick-fixes-form-card,
	.quick-fixes-testimonial-card,
	.quick-fixes-fix-card,
	.quick-fixes-problems__item,
	.quick-fixes-step {
		padding: 22px;
	}

	.quick-fixes-hero__content h1 {
		font-size: 2.75rem;
	}

	.quick-fixes-rating {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		max-width: 100%;
	}

	.quick-fixes-rating__avatars {
		flex-wrap: nowrap;
	}

	.quick-fixes-rating__avatar {
		width: 48px;
		margin-left: -8px;
	}

	.quick-fixes-rating__avatar img {
		border-width: 2px;
	}

	.quick-fixes-rating__copy {
		width: 100%;
	}

	.quick-fixes-rating__stars {
		flex-wrap: wrap;
		gap: 8px;
	}

	.quick-fixes-rating__text {
		max-width: 22ch;
	}

	.quick-fixes-cta {
		padding: 24px 22px;
		border-radius: 24px 24px 0 0;
	}

	.quick-fixes-cta__content {
		align-items: flex-start;
		flex-direction: column;
	}

	.quick-fixes-cta .button--secondary,
	.quick-fixes-topbar__button {
		width: 100%;
	}

	.inner-hero__actions {
		align-items: stretch;
	}

	.inner-hero__actions .button,
	.search-form__button {
		width: 100%;
	}

	.content-shell,
	.single-article,
	.feature-panel,
	.contact-panel {
		padding: 24px;
	}

	.testimonial-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.process-card {
		padding-left: 0;
		padding-right: 0;
	}

	.process-card__line,
	.process-card__icon-wrap::before,
	.process-card__icon-wrap::after {
		display: none;
	}

	.stat-item {
		padding-left: 10px;
		padding-right: 10px;
	}

	.hero-lab {
		min-height: 420px;
	}

	.hero-lab__laptop {
		position: relative;
		right: auto;
		top: 72px;
		width: 100%;
	}

	.hero-lab__badge {
		left: 0;
	}

	.hero-lab__shield {
		left: 8px;
		top: 178px;
		transform: scale(0.82);
	}

	.hero-lab__panel {
		position: relative;
		right: auto;
		top: auto;
		margin: 10px 0 0 auto;
		width: min(100%, 220px);
	}

	.hero-lab__metrics {
		left: auto;
		right: 0;
		bottom: 0;
	}

	.service-card,
	.testimonial-card,
	.pricing-card,
	.archive-card,
	.project-card,
	.media-card,
	.emergency-card {
		padding-left: 22px;
		padding-right: 22px;
	}

	.site-footer__bottom,
	.site-footer__legal {
		display: grid;
		justify-content: center;
	}
}
