:root {
	--acrel-color-ink: #16211f;
	--acrel-color-muted: #5e6864;
	--acrel-color-paper: #fffdf8;
	--acrel-color-surface: #f4f1e8;
	--acrel-color-surface-strong: #e5ebdf;
	--acrel-color-primary: #1f5c4c;
	--acrel-color-primary-dark: #12372f;
	--acrel-color-accent: #b85f3f;
	--acrel-color-design-accent: #f5b29c;
	--acrel-color-border: rgba(22, 33, 31, 0.14);
	--acrel-color-white: #ffffff;
	--acrel-shadow-soft: 0 24px 70px rgba(22, 33, 31, 0.12);
	--acrel-font-body: "Mulish", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--acrel-font-display: "Yeseva One", Georgia, serif;
	--acrel-container: min(100% - 32px, 1180px);
	--acrel-radius: 8px;
	--acrel-section-y: clamp(64px, 10vw, 124px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--acrel-color-paper);
	color: var(--acrel-color-ink);
	font-family: var(--acrel-font-body);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.is-navigation-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--acrel-color-accent);
	outline-offset: 4px;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--acrel-color-white);
	color: var(--acrel-color-ink);
	box-shadow: var(--acrel-shadow-soft);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(255, 253, 248, 0.92);
	border-bottom: 1px solid var(--acrel-color-border);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	width: var(--acrel-container);
	min-height: 72px;
	margin: 0 auto;
	gap: 18px;
}

.site-header__brand,
.site-footer__logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
}

.site-header__logo-image,
.custom-logo {
	width: auto;
	max-width: 168px;
	max-height: 48px;
	object-fit: contain;
}

.site-header__site-name,
.site-footer__site-name {
	font-family: var(--acrel-font-display);
	font-size: 1.45rem;
	line-height: 1.1;
}

.site-header__toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
	color: var(--acrel-color-ink);
	cursor: pointer;
}

.site-header__toggle-line {
	width: 18px;
	height: 2px;
	background: currentcolor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle-line + .site-header__toggle-line {
	margin-top: -12px;
}

.site-header.is-open .site-header__toggle-line:first-child {
	transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-line:nth-child(2) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-header__navigation {
	position: fixed;
	inset: 72px 0 auto;
	display: none;
	padding: 20px 16px 28px;
	background: var(--acrel-color-paper);
	border-bottom: 1px solid var(--acrel-color-border);
	box-shadow: var(--acrel-shadow-soft);
}

.site-header.is-open .site-header__navigation {
	display: block;
}

.site-header__menu,
.site-footer__links,
.site-footer__social {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-header__menu {
	flex-direction: column;
	gap: 8px;
}

.site-header__menu-link {
	display: block;
	padding: 12px 0;
	color: var(--acrel-color-ink);
	font-weight: 700;
	text-decoration: none;
}

.site-header__cta {
	display: none;
}

.section {
	position: relative;
	padding: var(--acrel-section-y) 0;
}

.section__inner {
	width: var(--acrel-container);
	margin: 0 auto;
}

.section--empty {
	padding-top: 48px;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 32px;
}

.section-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--acrel-color-accent);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--acrel-color-ink);
	font-family: var(--acrel-font-display);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
}

h1 {
	font-size: clamp(2.7rem, 8vw, 5.9rem);
}

h2 {
	font-size: clamp(2rem, 5.5vw, 4rem);
}

h3 {
	font-size: clamp(1.35rem, 4vw, 2rem);
}

p {
	margin: 0;
}

.rich-text > * + * {
	margin-top: 1em;
}

.rich-text p,
.section-heading .rich-text,
.hero__text {
	color: var(--acrel-color-muted);
	font-size: clamp(1rem, 2vw, 1.125rem);
}

.hero {
	overflow: hidden;
	padding-top: clamp(48px, 8vw, 92px);
	background: linear-gradient(180deg, var(--acrel-color-paper) 0%, var(--acrel-color-surface) 100%);
}

.hero__inner {
	display: grid;
	gap: 36px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 720px;
}

.hero__title {
	max-width: 11ch;
}

.hero__text {
	max-width: 620px;
	margin-top: 22px;
}

.hero__actions,
.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero__highlights {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 28px 0 0;
	color: var(--acrel-color-muted);
	list-style: none;
}

.hero__highlights li {
	position: relative;
	padding-left: 28px;
	font-weight: 700;
}

.hero__highlights li::before,
.check-list li::before {
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	background: var(--acrel-color-primary);
	border-radius: 50%;
	content: "";
}

.hero__media {
	position: relative;
	margin: 0;
}

.hero__image,
.text-media__image,
.cta-band__image {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--acrel-radius);
	box-shadow: var(--acrel-shadow-soft);
}

.acrel-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: var(--acrel-radius);
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.acrel-button:hover {
	transform: translateY(-1px);
}

.acrel-button--primary {
	background: var(--acrel-color-primary);
	color: var(--acrel-color-white);
}

.acrel-button--secondary,
.acrel-button--ghost {
	border-color: var(--acrel-color-border);
	background: transparent;
	color: var(--acrel-color-ink);
}

.acrel-button--text {
	min-height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--acrel-color-primary);
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

.acrel-button--light {
	background: var(--acrel-color-white);
	color: var(--acrel-color-primary-dark);
}

.acrel-button--light-ghost {
	border-color: rgba(255, 255, 255, 0.42);
	background: transparent;
	color: var(--acrel-color-white);
}

.intro-panel {
	background: var(--acrel-color-white);
}

.intro-panel__inner {
	padding: clamp(28px, 5vw, 64px);
	background: var(--acrel-color-surface-strong);
	border-radius: var(--acrel-radius);
}

.intro-panel__items {
	display: grid;
	gap: 1px;
	margin-top: 32px;
	overflow: hidden;
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
}

.intro-panel__item {
	padding: 22px;
	background: rgba(255, 255, 255, 0.64);
}

.intro-panel__item strong,
.stat strong {
	display: block;
	font-family: var(--acrel-font-display);
	font-size: clamp(2rem, 8vw, 3.5rem);
	font-weight: 400;
	line-height: 1;
}

.intro-panel__item span,
.stat span {
	display: block;
	margin-top: 8px;
	font-weight: 900;
}

.intro-panel__item p,
.stat p,
.feature-card p,
.process-step p {
	margin-top: 8px;
	color: var(--acrel-color-muted);
}

.text-media__inner {
	display: grid;
	gap: 32px;
	align-items: center;
}

.text-media__content {
	max-width: 640px;
}

.text-media .rich-text,
.text-media .check-list {
	margin-top: 18px;
}

.check-list {
	display: grid;
	gap: 10px;
	padding: 0;
	color: var(--acrel-color-muted);
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.text-media__media {
	margin: 0;
}

.feature-cards,
.process,
.gallery-section {
	background: var(--acrel-color-surface);
}

.card-grid,
.testimonials__grid {
	display: grid;
	gap: 18px;
}

.feature-card,
.testimonial,
.faq-item {
	padding: 24px;
	background: var(--acrel-color-white);
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
}

.feature-card__icon,
.contact-item__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	background: var(--acrel-color-surface-strong);
	border-radius: var(--acrel-radius);
}

.feature-card__icon-image,
.contact-item__icon-image {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.feature-card h3 + p,
.feature-card p + .acrel-button {
	margin-top: 12px;
}

.stats {
	background: var(--acrel-color-primary-dark);
	color: var(--acrel-color-white);
}

.stats .eyebrow,
.stats h2,
.stats p,
.stats span {
	color: inherit;
}

.stats__inner {
	display: grid;
	gap: 28px;
}

.stats__grid {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--acrel-radius);
}

.stat {
	padding: 24px;
	background: rgba(255, 255, 255, 0.07);
}

.process__steps {
	display: grid;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: process;
}

.process-step {
	position: relative;
	padding: 24px;
	background: var(--acrel-color-white);
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
}

.process-step__number {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	margin-bottom: 18px;
	padding: 0 12px;
	background: var(--acrel-color-accent);
	border-radius: var(--acrel-radius);
	color: var(--acrel-color-white);
	font-weight: 900;
}

.testimonial {
	margin: 0;
}

.testimonial blockquote {
	margin: 0;
	color: var(--acrel-color-ink);
	font-size: 1.1rem;
	font-weight: 700;
}

.testimonial figcaption {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
}

.testimonial__image {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial small {
	display: block;
	color: var(--acrel-color-muted);
}

.gallery-section__grid {
	display: grid;
	gap: 16px;
}

.gallery-section__item {
	margin: 0;
}

.gallery-section__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--acrel-radius);
}

.faq__inner {
	display: grid;
	gap: 24px;
}

.faq__items {
	display: grid;
	gap: 12px;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 900;
}

.faq-item .rich-text {
	margin-top: 16px;
	color: var(--acrel-color-muted);
}

.cta-band {
	background: var(--acrel-color-paper);
}

.cta-band__inner {
	display: grid;
	gap: 28px;
	padding: clamp(28px, 6vw, 64px);
	background: var(--acrel-color-primary);
	border-radius: var(--acrel-radius);
	color: var(--acrel-color-white);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
	color: inherit;
}

.cta-band__media {
	margin: 0;
}

.contact-section {
	background: var(--acrel-color-white);
}

.contact-section__inner {
	display: grid;
	gap: 28px;
	align-items: start;
}

.contact-section__content {
	max-width: 620px;
}

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

.contact-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.contact-item__icon {
	flex: 0 0 48px;
	margin: 0;
}

.contact-item strong,
.contact-item small,
.contact-item a {
	display: block;
}

.contact-item small,
.contact-item a {
	color: var(--acrel-color-muted);
}

.contact-section__form {
	padding: clamp(22px, 4vw, 36px);
	background: var(--acrel-color-surface);
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
}

.wpcf7 form {
	display: grid;
	gap: 16px;
}

.wpcf7 p {
	margin: 0;
}

.wpcf7 label {
	display: grid;
	gap: 8px;
	color: var(--acrel-color-ink);
	font-weight: 900;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	background: var(--acrel-color-white);
	border: 1px solid var(--acrel-color-border);
	border-radius: var(--acrel-radius);
	color: var(--acrel-color-ink);
}

.wpcf7 textarea {
	min-height: 144px;
	resize: vertical;
}

.wpcf7 input[type="submit"] {
	display: inline-flex;
	width: auto;
	min-height: 48px;
	padding: 13px 22px;
	background: var(--acrel-color-primary);
	border: 1px solid var(--acrel-color-primary);
	border-radius: var(--acrel-radius);
	color: var(--acrel-color-white);
	font-weight: 900;
	cursor: pointer;
}

.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
	font-size: 0.95rem;
}

.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 12px 14px;
	border-radius: var(--acrel-radius);
}

.site-footer {
	background: var(--acrel-color-ink);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
	display: grid;
	gap: 28px;
	width: var(--acrel-container);
	margin: 0 auto;
	padding: 48px 0;
}

.site-footer__brand {
	max-width: 420px;
}

.site-footer__logo {
	color: var(--acrel-color-white);
}

.site-footer__logo-image {
	width: auto;
	max-width: 160px;
	max-height: 48px;
	object-fit: contain;
}

.site-footer__text {
	margin-top: 18px;
}

.site-footer__links,
.site-footer__social {
	flex-direction: column;
	gap: 10px;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--acrel-color-white);
}

.site-footer__bottom {
	width: var(--acrel-container);
	margin: 0 auto;
	padding: 18px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.92rem;
}

.site-main--default {
	width: var(--acrel-container);
	margin: 0 auto;
	padding: 64px 0;
}

.entry {
	max-width: 760px;
}

.entry__header {
	margin-bottom: 24px;
}

.entry__content > * + * {
	margin-top: 1em;
}

@media (min-width: 640px) {
	:root {
		--acrel-container: min(100% - 48px, 1180px);
	}

	.intro-panel__items,
	.stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid,
	.testimonials__grid,
	.gallery-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 86px;
	}

	.site-header__toggle {
		display: none;
	}

	.site-header__navigation {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.site-header__menu {
		flex-direction: row;
		justify-content: center;
		gap: clamp(18px, 3vw, 34px);
	}

	.site-header__menu-link {
		padding: 6px 0;
		font-size: 0.95rem;
	}

	.site-header__cta {
		display: inline-flex;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
		align-items: center;
	}

	.hero__image {
		aspect-ratio: 0.86;
	}

	.text-media__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(48px, 7vw, 92px);
	}

	.text-media--media-left .text-media__content {
		order: 2;
	}

	.text-media--media-left .text-media__media {
		order: 1;
	}

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

	.stats__inner,
	.faq__inner,
	.contact-section__inner {
		grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
		gap: clamp(48px, 8vw, 96px);
	}

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

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

	.gallery-section__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.cta-band__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
		align-items: center;
	}

	.site-footer__inner {
		grid-template-columns: minmax(260px, 1fr) auto auto;
		align-items: start;
	}
}

@media (min-width: 1120px) {
	.intro-panel__items {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

.acrel-design-template {
	background: #ffffff;
	color: var(--acrel-color-white);
}

.acrel-design-page {
	min-height: 100vh;
	background: #7d5fac;
}

.acrel-legal-template {
	background: #ffffff;
	color: #000000;
}

.acrel-legal-page {
	min-height: 100vh;
	background: #ffffff;
	font-family: var(--acrel-font-body);
}

.acrel-legal-header {
	background: #ffffff;
	color: #000000;
}

.acrel-legal-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 32px, 1240px);
	min-height: 106px;
	margin: 0 auto;
	gap: 24px;
}

.acrel-legal-header__logo-link {
	display: inline-flex;
	width: 118px;
	text-decoration: none;
}

.acrel-legal-header__logo {
	width: 118px;
	height: auto;
}

.acrel-legal-header__nav {
	display: flex;
	align-items: center;
	gap: clamp(24px, 4vw, 44px);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}

.acrel-legal-header__nav a {
	color: #000000;
	text-decoration: none;
}

.acrel-legal-header__nav a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.acrel-legal-header__bar {
	width: 100%;
	height: 36px;
	background: #000000;
}

.acrel-legal-content {
	background: #ffffff;
	color: #000000;
}

.acrel-legal-content__inner {
	width: min(100% - 64px, 1240px);
	min-height: 680px;
	margin: 0 auto;
	padding: 46px 0 72px;
}

.acrel-legal-content h1 {
	margin: 0 0 12px;
	color: #000000;
	font-family: var(--acrel-font-body);
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
}

.acrel-legal-content__body {
	max-width: 1120px;
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.acrel-legal-content__body > * + * {
	margin-top: 1.25em;
}

.acrel-legal-content__body h2,
.acrel-legal-content__body h3,
.acrel-legal-content__body h4 {
	margin: 1.45em 0 0.7em;
	color: #000000;
	font-family: var(--acrel-font-body);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
}

.acrel-legal-content__body h2 {
	font-size: 18px;
}

.acrel-legal-content__body h3,
.acrel-legal-content__body h4 {
	font-size: 16px;
}

.acrel-legal-content__body p,
.acrel-legal-content__body ul,
.acrel-legal-content__body ol,
.acrel-legal-content__body table {
	margin: 0 0 1.15em;
}

.acrel-legal-content__body a {
	color: #000000;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.acrel-legal-content__body table {
	width: min(100%, 980px);
	border-collapse: collapse;
	font-size: 12px;
}

.acrel-legal-content__body th,
.acrel-legal-content__body td {
	padding: 12px 14px;
	border: 1px solid #ccc;
	text-align: left;
	vertical-align: top;
}

.acrel-legal-content__body th {
	background: #eef2f3;
	font-weight: 800;
}

.acrel-legal-footer {
	background: #7d5fac;
	color: #000000;
}

.acrel-legal-footer__inner {
	display: grid;
	grid-template-columns: 152px minmax(0, 1fr);
	align-items: start;
	width: min(100% - 72px, 1240px);
	margin: 0 auto;
	padding: 28px 0 36px;
	gap: 42px;
}

.acrel-legal-footer__logo-box {
	display: grid;
	place-items: center;
	width: 152px;
	height: 152px;
	background: #1b0430;
	text-decoration: none;
}

.acrel-legal-footer__logo {
	width: 88px;
	height: auto;
}

.acrel-legal-footer__main {
	min-width: 0;
	padding-top: 17px;
}

.acrel-legal-footer__channels {
	display: grid;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.acrel-legal-footer__channels li {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 18px;
	color: #000000;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.1;
}

.acrel-legal-footer__channels img {
	flex: 0 0 auto;
	object-fit: contain;
}

.acrel-legal-footer__channels a,
.acrel-legal-footer__nav a {
	color: #000000;
	text-decoration: none;
}

.acrel-legal-footer__channels a:hover,
.acrel-legal-footer__nav a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.acrel-legal-footer__rule {
	width: 100%;
	height: 1px;
	margin: 42px 0 20px;
	background: rgba(255, 255, 255, 0.82);
}

.acrel-legal-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.acrel-legal-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.acrel-legal-footer__nav a {
	font-size: 13px;
	font-weight: 700;
}

.acrel-legal-footer__copyright {
	margin: 0;
	color: rgba(28, 4, 48, 0.5);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.acrel-hero {
	position: relative;
	min-height: clamp(520px, 52vw, 710px);
	overflow: hidden;
	color: var(--acrel-color-white);
}

.acrel-hero__picture,
.acrel-hero__overlay {
	position: absolute;
	inset: 0;
}

.acrel-hero__picture {
	z-index: 0;
	display: block;
}

.acrel-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.acrel-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(27, 31, 76, 0.52) 0%, rgba(89, 66, 119, 0.36) 62%, rgba(87, 59, 92, 0.14) 100%),
		linear-gradient(90deg, rgba(16, 16, 53, 0.62) 0%, rgba(29, 23, 61, 0.28) 48%, rgba(24, 15, 38, 0.06) 100%);
	pointer-events: none;
}

.acrel-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: min(100% - 32px, 1240px);
	min-height: inherit;
	margin: 0 auto;
	padding: 30px 0 54px;
}

.acrel-hero__badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	width: 196px;
	padding: 0;
	background: transparent;
	border: 0;
	text-decoration: none;
}

.acrel-hero__logo {
	width: 196px;
	height: auto;
}

.acrel-hero__content {
	width: min(100%, 580px);
	margin-top: clamp(54px, 7vw, 70px);
}

.acrel-hero__intro {
	color: var(--acrel-color-design-accent);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	text-transform: uppercase;
}

.acrel-hero__support {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	text-transform: uppercase;
}

.acrel-hero__intro {
	max-width: 310px;
}

.acrel-mark-line {
	display: block;
	width: 108px;
	height: 2px;
	margin: 15px 0 8px;
	background: var(--acrel-color-design-accent);
}

.acrel-mark-line--support {
	width: 25px;
	margin-top: 32px;
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.92);
}

.acrel-mark-line--short {
	width: 25px;
	margin-top: 13px;
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.92);
}

.acrel-hero__title {
	max-width: 410px;
	margin: 20px 0 50px;
	color: var(--acrel-color-white);
	font-size: 24px;
	line-height: 0.98;
}

.acrel-hero__support {
	max-width: 390px;
}

.acrel-hero__support > * + * {
	margin-top: 0.85em;
}

.acrel-contact {
	background: #7d5fac;
	color: var(--acrel-color-white);
	padding: clamp(42px, 5.8vw, 60px) 0 clamp(36px, 4.8vw, 48px);
}

.acrel-contact__inner {
	display: grid;
	width: min(100% - 48px, 1240px);
	margin: 0 auto;
	gap: 42px;
}

.acrel-contact__info {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	margin-top: 50px;
}

.acrel-contact__text {
	max-width: 390px;
	color: var(--acrel-color-white);
	font-family: var(--acrel-font-display);
	font-size: 20px;
	line-height: 1.12;
}

.acrel-contact__text > * + * {
	margin-top: 0.35em;
}

.acrel-contact__after-channels {
	max-width: 390px;
	margin-top: 3px;
	color: var(--acrel-color-white);
	font-family: var(--acrel-font-display);
	font-size: 20px;
	line-height: 1.12;
}

.acrel-contact__channels {
	display: grid;
	gap: 3px;
	padding: 0;
	margin: 9px 0 0;
	list-style: none;
}

.acrel-contact-channel {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 18px;
	color: var(--acrel-color-design-accent);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.15;
}

.acrel-contact-channel__icon {
	display: inline-flex;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.acrel-contact-channel__icon-image {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.acrel-contact-channel--phone .acrel-contact-channel__icon {
	flex-basis: 16px;
	width: 16px;
	height: 16px;
}

.acrel-contact-channel--phone .acrel-contact-channel__icon-image {
	width: 16px;
	height: 16px;
}

.acrel-contact-channel a {
	color: inherit;
	text-decoration: none;
}

.acrel-contact__legal {
	margin-top: 42px;
}

.acrel-contact__legal::before {
	display: block;
	width: 85px;
	height: 2px;
	margin-bottom: 10px;
	background: var(--acrel-color-design-accent);
	content: "";
}

.acrel-contact__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.acrel-contact__legal a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.acrel-contact__legal a:hover {
	color: var(--acrel-color-white);
}

.acrel-contact__form-panel h2 {
	margin-bottom: 30px;
	color: var(--acrel-color-white);
	font-size: clamp(1.85rem, 4.2vw, 2.45rem);
	line-height: 1;
}

.acrel-contact__form {
	color: var(--acrel-color-white);
}

.acrel-contact .wpcf7 form,
.acrel-contact .wpcf7-form {
	display: grid;
	gap: 21px;
}

.acrel-contact .wpcf7 p {
	margin: 0;
}

.acrel-form__row {
	display: grid;
	gap: 21px 28px;
}

.acrel-contact .wpcf7 label {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.acrel-contact .wpcf7-form-control-wrap {
	display: block;
}

.acrel-contact .wpcf7 input:not([type="submit"]),
.acrel-contact .wpcf7 textarea,
.acrel-contact .wpcf7 select {
	width: 100%;
	min-height: 32px;
	padding: 3px 0 9px;
	background: transparent;
	border: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.66);
	border-radius: 0;
	color: var(--acrel-color-white);
}

.acrel-contact .wpcf7 textarea {
	min-height: 34px;
	max-height: 50px;
	resize: vertical;
}

.acrel-form__privacy-note {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-family: var(--acrel-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.acrel-form__privacy-note a {
	color: inherit;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.acrel-contact .wpcf7 input::placeholder,
.acrel-contact .wpcf7 textarea::placeholder {
	color: rgba(255, 255, 255, 0.62);
	opacity: 1;
	text-transform: uppercase;
}

.acrel-contact .wpcf7 input[type="submit"] {
	justify-self: start;
	min-height: 40px;
	margin-top: 2px;
	padding: 8px 22px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 0;
	color: var(--acrel-color-white);
	font-weight: 800;
	cursor: pointer;
}

.acrel-contact .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #ffe2e2;
	font-size: 0.78rem;
}

.acrel-contact .wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 10px 12px;
	border-color: rgba(255, 255, 255, 0.62);
	color: var(--acrel-color-white);
	font-size: 0.84rem;
}

@media (min-width: 640px) {
	.acrel-form__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.acrel-legal-header__nav {
		font-size: 16px;
	}

	.acrel-legal-content h1 {
		font-size: 40px;
	}

	.acrel-legal-content__body {
		font-size: 16px;
		line-height: 24px;
	}

	.acrel-legal-footer__channels li,
	.acrel-legal-footer__nav a,
	.acrel-legal-footer__copyright {
		font-size: 16px;
	}

	.acrel-hero__inner {
		width: min(100% - 112px, 1240px);
	}

	.acrel-contact__inner {
		grid-template-columns: minmax(250px, 330px) minmax(390px, 1fr);
		gap: clamp(56px, 9vw, 112px);
	}
}

@media (min-width: 1024px) {
	.acrel-hero {
		min-height: 640px;
	}

	.acrel-hero__inner {
		padding-top: 36px;
	}

	.acrel-hero__content {
		width: 580px;
		margin-top: 78px;
	}

	.acrel-hero__intro {
		max-width: 460px;
		font-size: 16px;
		line-height: 20px;
	}

	.acrel-mark-line {
		width: 140px;
		margin-top: 22px;
		margin-bottom: 10px;
	}

	.acrel-mark-line--support,
	.acrel-mark-line--short {
		width: 25px;
	}

	.acrel-hero__title {
		max-width: 580px;
		font-size: 32px;
		line-height: 1;
	}

	.acrel-hero__support {
		max-width: 445px;
		font-size: 15px;
		line-height: 20px;
	}

	.acrel-contact {
		padding-top: 36px;
	}

	.acrel-contact__inner {
		width: min(100% - 142px, 1240px);
		margin-left: max(70px, calc((100% - 1240px) / 2 + 96px));
		margin-right: auto;
	}
}

@media (max-width: 767px) {
	.acrel-legal-header__inner {
		width: min(100% - 32px, 1240px);
		min-height: 82px;
	}

	.acrel-legal-header__logo-link,
	.acrel-legal-header__logo {
		width: 104px;
	}

	.acrel-legal-header__bar {
		height: 26px;
	}

	.acrel-legal-content__inner {
		width: min(100% - 32px, 1240px);
		min-height: 520px;
		padding: 34px 0 56px;
	}

	.acrel-legal-content h1 {
		font-size: 30px;
	}

	.acrel-legal-content__body {
		font-size: 13px;
		line-height: 1.6;
	}

	.acrel-legal-footer__inner {
		grid-template-columns: 1fr;
		width: min(100% - 32px, 1240px);
		padding: 24px 0 32px;
		gap: 22px;
	}

	.acrel-legal-footer__logo-box {
		width: 132px;
		height: 132px;
	}

	.acrel-legal-footer__main {
		padding-top: 0;
	}

	.acrel-legal-footer__rule {
		margin: 26px 0 16px;
	}

	.acrel-legal-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.acrel-legal-footer__copyright {
		white-space: normal;
	}

	.acrel-hero {
		min-height: 640px;
	}

	.acrel-contact__inner {
		gap: 21px;
	}

	.acrel-hero__image {
		object-position: center center;
	}

	.acrel-hero__content {
		margin-top: 64px;
	}

	.acrel-contact__info {
		display: contents;
	}

	.acrel-contact__text {
		order: 1;
	}

	.acrel-contact__channels {
		order: 2;
		gap: 0;
		margin-top: 0;
	}

	.acrel-contact-channel {
		min-height: 16px;
		line-height: 1;
	}

	.acrel-contact__after-channels {
		order: 3;
		margin-top: 0;
	}

	.acrel-contact__form-panel {
		order: 4;
		margin-top: 21px;
	}

	.acrel-form__row {
		gap: 5px 28px;
	}

	.acrel-contact__legal {
		order: 5;
		margin-top: 28px;
	}
}

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