:root {
	--ab-bg: #101f34;
	--ab-bg-deep: #091526;
	--ab-surface: #1a2d46;
	--ab-surface-light: #273a53;
	--ab-accent: #6296ff;
	--ab-accent-light: #7bafff;
	--ab-heading: #f2f5fa;
	--ab-text: #ebedf0;
	--ab-muted: #aab5c5;
	--ab-border: rgba(166, 211, 255, 0.18);
	--ab-shell: 78rem;
	--ab-radius: .55rem;
	--ab-shadow: 0 1.5rem 4rem rgba(0, 8, 25, .24);
	--ab-gradient: linear-gradient(135deg, #487cff 0%, #7bafff 100%);
	--ab-heading-font: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ab-body-font: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
	margin: 0;
	background: var(--ab-bg);
	color: var(--ab-text);
	font-family: var(--ab-body-font);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body, button, input, textarea, select { font-family: var(--ab-body-font); }
body { overflow-wrap: break-word; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
	color: var(--ab-heading);
	font-family: var(--ab-heading-font);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.08;
}
h1 { font-size: clamp(2.25rem, 5vw, 5.25rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: .2rem solid var(--ab-accent-light); outline-offset: .22rem; }
::selection { background: var(--ab-accent); color: #fff; }

.site-shell { width: min(calc(100% - 3rem), var(--ab-shell)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(4.5rem, 7vw, 7rem); overflow: hidden; }
.section--compact { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--ab-surface); }
.eyebrow {
	margin-bottom: 1.1rem;
	color: var(--ab-accent-light);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}
.lead { max-width: 42rem; color: var(--ab-text); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; }
.section-heading { max-width: 49rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading h2 { margin-bottom: 1.25rem; }
.section-heading > p:not(.eyebrow) { max-width: 43rem; color: var(--ab-muted); font-size: 1.1rem; }
.visually-hidden, .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.skip-link {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 10000;
	padding: .7rem 1rem;
	background: #fff;
	color: #071426;
	transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--ab-border);
	background: rgba(9, 21, 38, .86);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	backdrop-filter: blur(18px) saturate(150%);
}
.site-header__inner { display: flex; min-height: 5.25rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ab-heading); font-weight: 700; text-decoration: none; }
.brand__mark { display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border-radius: .35rem; background: var(--ab-gradient); color: #fff; font-size: .85rem; letter-spacing: -.03em; }
.brand__image { width: 3rem; height: 3rem; border-radius: .3rem; object-fit: cover; }
.brand__name { font-size: 1.05rem; }
.custom-logo { width: auto; max-height: 3.3rem; }
.primary-navigation { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.primary-navigation > a:not(.button) { color: var(--ab-muted); font-size: .92rem; font-weight: 600; text-decoration: none; }
.primary-navigation > a:not(.button):hover { color: var(--ab-heading); }
.nav-toggle { display: none; padding: .5rem; border: 0; background: transparent; }
.nav-toggle > span:not(.screen-reader-text) { display: block; width: 1.6rem; height: 2px; margin: .3rem 0; background: var(--ab-heading); }

.button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	padding: .75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: .4rem;
	background: var(--ab-gradient);
	box-shadow: 0 .75rem 2rem rgba(72, 124, 255, .22);
	color: #fff;
	font-size: .95rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 1rem 2.4rem rgba(72, 124, 255, .3); color: #fff; }
.elementor .elementor-widget-button .elementor-button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	padding: .75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: .4rem;
	background: var(--ab-gradient) !important;
	box-shadow: 0 .75rem 2rem rgba(72, 124, 255, .22);
	color: #fff;
	font-size: .95rem;
	font-weight: 700;
	text-decoration: none;
}
.elementor .elementor-widget-button .elementor-button:hover { background: linear-gradient(135deg, #5b8dff 0%, #8bb9ff 100%) !important; transform: translateY(-2px); box-shadow: 0 1rem 2.4rem rgba(72, 124, 255, .3); }
.elementor .cta-button--ghost .elementor-button { border-color: var(--ab-border); background: transparent !important; box-shadow: none; }
.button--small { min-height: 2.65rem; padding: .55rem 1rem; }
.button--ghost { border-color: var(--ab-border); background: transparent; box-shadow: none; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 2rem; }
.button-row--center { justify-content: center; }
.text-link { color: var(--ab-heading); font-weight: 650; }

.hero { display: flex; min-height: min(44rem, calc(100svh - 5.25rem)); align-items: center; background: radial-gradient(circle at 75% 40%, rgba(98,150,255,.17), transparent 35%), linear-gradient(145deg, var(--ab-bg-deep), var(--ab-bg)); }
.hero__glow { position: absolute; top: -20%; right: -12%; width: 48rem; height: 48rem; border-radius: 50%; background: rgba(72,124,255,.11); filter: blur(90px); pointer-events: none; }
.hero__grid { display: grid; align-items: center; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: clamp(3rem, 8vw, 8rem); }
.hero h1 { margin-bottom: 1.6rem; }
.hero h1 span { color: var(--ab-accent-light); }
.benefit-list ul { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.benefit-list li { position: relative; padding-left: 1.2rem; color: var(--ab-muted); font-size: .92rem; }
.benefit-list li::before { position: absolute; top: .65em; left: 0; width: .4rem; height: .4rem; border-radius: 50%; background: var(--ab-accent); content: ""; }
.hero__visual { position: relative; display: grid; min-height: 31rem; place-content: center; border: 0; background: transparent; box-shadow: none; overflow: hidden; }
.hero__orb { position: absolute; top: 15%; left: 15%; width: 13rem; height: 13rem; border: 1px solid rgba(123,175,255,.4); border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(123,175,255,.8), rgba(72,124,255,.08) 48%, transparent 70%); box-shadow: 0 0 5rem rgba(98,150,255,.25); }
.hero__logo { position: relative; z-index: 1; width: min(80%, 27rem); }
.hero__logo img { width: 100%; height: auto; border-radius: 0; box-shadow: none; }

.stats { border-block: 1px solid var(--ab-border); background: var(--ab-surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { display: flex; flex-direction: column; gap: .25rem; min-height: 6rem; justify-content: center; padding: 0 clamp(1rem, 3vw, 2.5rem); border-left: 1px solid var(--ab-border); }
.stats-grid > div:first-child { border-left: 0; padding-left: 0; }
.stats-grid strong { color: var(--ab-heading); font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.06em; line-height: 1; }
.stats-grid span { color: var(--ab-muted); font-size: .85rem; }
.stat-item .elementor-heading-title { color: var(--ab-heading); font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.06em; line-height: 1; }
.stat-item .elementor-widget-text-editor { color: var(--ab-muted); font-size: .85rem; }
.stat-item .card__number { display: none; }

.card-grid { display: grid; gap: 1rem; }
.card-grid--three { grid-template-columns: repeat(3, 1fr); }
.card, .special-card { position: relative; min-height: 13.5rem; padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--ab-border); background: linear-gradient(145deg, rgba(39,58,83,.78), rgba(26,45,70,.7)); transition: border-color .2s ease, transform .2s ease; }
.card:hover, .special-card:hover { border-color: rgba(123,175,255,.55); transform: translateY(-3px); }
.card__number { display: block; margin-bottom: 2.25rem; color: var(--ab-accent-light); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.card h3, .special-card h3 { margin-bottom: .85rem; }
.card p, .special-card p { color: var(--ab-muted); font-size: .95rem; }
.special-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.special-card { min-height: 13rem; grid-column: span 2; }
.special-card:nth-child(4), .special-card:nth-child(5) { grid-column: span 3; }

.split-layout { display: grid; align-items: start; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.split-layout .section-heading { position: sticky; top: 8rem; margin-bottom: 0; }
.feature-list { border-top: 1px solid var(--ab-border); }
.feature { display: grid; padding: 2rem 0; border-bottom: 1px solid var(--ab-border); grid-template-columns: minmax(10rem, .8fr) 1.2fr; gap: 2rem; }
.feature h3 { margin: 0; }
.feature p { margin: 0; color: var(--ab-muted); }

.timeline { position: relative; display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.timeline::before { position: absolute; top: 2rem; bottom: 2rem; left: 1.55rem; width: 1px; background: var(--ab-border); content: ""; }
.timeline li, .timeline-item { position: relative; display: grid; min-height: 8rem; align-items: start; grid-template-columns: 3.2rem 1fr; gap: 2rem; }
.timeline li > span, .timeline-number { position: relative; z-index: 1; display: grid; width: 3.2rem; height: 3.2rem; place-items: center; border: 1px solid var(--ab-accent); border-radius: 50%; background: var(--ab-surface); color: var(--ab-accent-light); font-size: .72rem; font-weight: 700; }
.timeline-number .elementor-widget-container { display: grid; width: 100%; height: 100%; place-items: center; }
.timeline-number span { color: inherit; }
.timeline h3 { margin: .35rem 0 .5rem; }
.timeline p { color: var(--ab-muted); }

.team__grid { display: grid; align-items: center; grid-template-columns: minmax(17rem, .75fr) 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.team .section-heading { margin: 0; }
.portrait-placeholder { position: relative; display: grid; min-height: 35rem; place-items: center; border: 1px solid var(--ab-border); background: radial-gradient(circle at 50% 35%, rgba(123,175,255,.3), transparent 28%), linear-gradient(155deg, var(--ab-surface-light), var(--ab-bg-deep)); overflow: hidden; }
.portrait-placeholder::before { position: absolute; bottom: -20%; width: 75%; aspect-ratio: 1; border-radius: 50% 50% 0 0; background: rgba(123,175,255,.12); content: ""; }
.portrait-placeholder img { position: relative; z-index: 1; width: min(80%, 25rem); height: auto; border-radius: .45rem; box-shadow: var(--ab-shadow); }
.anton-portrait { min-height: 35rem; border: 1px solid var(--ab-border); background: radial-gradient(circle at 50% 35%, rgba(123,175,255,.22), transparent 35%), linear-gradient(155deg, var(--ab-surface-light), var(--ab-bg-deep)); overflow: hidden; }
.anton-portrait .elementor-widget-container { display: flex; min-height: 35rem; align-items: flex-end; justify-content: center; }
.anton-portrait img { width: 100%; height: 35rem; object-fit: contain; object-position: center bottom; }
.elementor .anton-portrait { min-height: 30rem; height: 100%; }
.elementor .anton-portrait .elementor-widget-container { min-height: 30rem; }
.elementor .anton-portrait img { width: 100%; height: 30rem; object-fit: contain; object-position: center bottom; }
.team h3 { margin: 2.2rem 0 .25rem; font-size: 1.5rem; }
.team .role { color: var(--ab-accent-light); font-size: .92rem; font-weight: 650; }

.faq-list details { border-top: 1px solid var(--ab-border); }
.faq-list details:last-child { border-bottom: 1px solid var(--ab-border); }
.faq-list summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; color: var(--ab-heading); cursor: pointer; font-size: 1.08rem; font-weight: 650; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1.25rem; right: .2rem; color: var(--ab-accent-light); content: "+"; font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 2rem 1.5rem 0; color: var(--ab-muted); }
.faq-list .elementor-accordion-item { border: 0; border-top: 1px solid var(--ab-border); }
.faq-list .elementor-accordion-item:last-child { border-bottom: 1px solid var(--ab-border); }
.faq-list .elementor-tab-title { padding: 1.5rem 0; color: var(--ab-heading); font-size: 1.08rem; font-weight: 650; }
.faq-list .elementor-tab-title .elementor-accordion-icon { color: var(--ab-accent-light); }
.faq-list .elementor-tab-content { padding: 0 2rem 1.5rem 0; border: 0; color: var(--ab-muted); }

.contact { background: radial-gradient(circle at 50% 100%, rgba(98,150,255,.25), transparent 42%), var(--ab-bg-deep); text-align: center; }
.contact__inner { max-width: 58rem; }
.contact h2 { margin-bottom: 1.2rem; }
.contact__inner > p:not(.eyebrow):not(.contact__meta) { max-width: 44rem; margin-inline: auto; color: var(--ab-muted); font-size: 1.15rem; }
.contact__meta { margin-top: 2rem; color: var(--ab-muted); font-size: .9rem; }
.contact__inner > .elementor-widget-text-editor:not(.eyebrow):not(.contact__meta) { max-width: 44rem; margin-inline: auto; color: var(--ab-muted); font-size: 1.15rem; }
.contact__inner > .cta-button { width: auto; margin: .4rem; }

/* Elementor wraps boxed containers in .e-con-inner. Layout belongs on that
   wrapper; putting Grid on the outer container would create a one-item Grid and
   stack every editable card vertically. */
.elementor .section { padding-inline: 0; --padding-left: 0; --padding-right: 0; }
.elementor .section > .e-con-inner { width: 100%; max-width: none; padding: 0; }
.elementor .site-shell {
	width: min(calc(100% - 3rem), var(--ab-shell));
	max-width: none;
	min-width: 0;
	padding: 0;
	margin-inline: auto;
}
.elementor .site-shell > .e-con-inner { width: 100%; max-width: none; min-width: 0; padding: 0; }
.elementor .hero__grid, .elementor .stats-grid, .elementor .card-grid,
.elementor .special-grid, .elementor .split-layout, .elementor .team__grid,
.elementor .feature, .elementor .timeline-item { display: block; }
.elementor .hero__grid > .e-con-inner,
.elementor .stats-grid > .e-con-inner,
.elementor .card-grid > .e-con-inner,
.elementor .special-grid > .e-con-inner,
.elementor .split-layout > .e-con-inner,
.elementor .team__grid > .e-con-inner,
.elementor .feature > .e-con-inner,
.elementor .timeline-item > .e-con-inner { display: grid; width: 100%; max-width: none; min-width: 0; }
.elementor .hero__grid > .e-con-inner { align-items: center; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: clamp(3rem, 8vw, 8rem); }
.elementor .stats-grid > .e-con-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.elementor .card-grid > .e-con-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.elementor .special-grid > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.elementor .special-grid > .e-con-inner > .special-card { grid-column: auto; }
.elementor .split-layout > .e-con-inner { align-items: start; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.elementor .team__grid > .e-con-inner { align-items: center; grid-template-columns: minmax(17rem, .75fr) 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.elementor .feature > .e-con-inner { grid-template-columns: minmax(10rem, .8fr) 1.2fr; gap: 2rem; }
.elementor .timeline-item > .e-con-inner { align-items: start; grid-template-columns: 3.2rem minmax(0, 1fr); gap: 2rem; }
.elementor .hero__content, .elementor .section-heading, .elementor .card,
.elementor .special-card, .elementor .feature-list, .elementor .timeline-content,
.elementor .contact__inner, .elementor .stat-item { --flex-direction: column; flex-direction: column; min-width: 0; }
.elementor .hero__content > .e-con-inner, .elementor .section-heading > .e-con-inner,
.elementor .card > .e-con-inner, .elementor .special-card > .e-con-inner,
.elementor .feature-list > .e-con-inner, .elementor .timeline-content > .e-con-inner,
.elementor .contact__inner > .e-con-inner, .elementor .stat-item > .e-con-inner { width: 100%; max-width: none; min-width: 0; padding: 0; }
.elementor .card, .elementor .special-card { width: 100%; height: 100%; min-height: 13.5rem; --min-height: 13.5rem; }
.elementor .stats-grid > .e-con-inner > .stat-item { justify-content: center; }
.elementor .stats-grid > .e-con-inner > .stat-item + .stat-item { border-left: 1px solid var(--ab-border); }
.elementor .section-heading > .elementor-widget-text-editor:not(.eyebrow) { max-width: 43rem; color: var(--ab-muted); font-size: 1.1rem; }
.elementor .contact__inner > .e-con-inner { align-items: center; }
.elementor .contact__inner > .e-con-inner > .elementor-widget-text-editor:not(.eyebrow):not(.contact__meta) { max-width: 44rem; color: var(--ab-muted); font-size: 1.15rem; }
.elementor .contact__inner > .e-con-inner > .cta-button { width: auto; margin: .4rem; }

.site-footer { padding-top: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--ab-border); background: #071426; color: var(--ab-muted); font-size: .9rem; }
.footer-grid { display: grid; padding-bottom: 4rem; grid-template-columns: 1.4fr .8fr .8fr; gap: 3rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.footer-title { color: var(--ab-heading); font-size: 1.2rem; font-weight: 700; }
.footer-label { margin-bottom: .6rem; color: var(--ab-heading); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--ab-heading); }
.footer-grid address { font-style: normal; }
.footer-bottom { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid var(--ab-border); }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 1.5rem; }

.legal-page { min-height: 60vh; padding-block: clamp(5rem, 9vw, 8rem); }
.legal-page__inner { max-width: 58rem; }
.legal-page__header { padding-bottom: 2rem; margin-bottom: 3rem; border-bottom: 1px solid var(--ab-border); }
.legal-page h1 { margin-bottom: 0; font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-content { color: var(--ab-muted); }
.legal-content h2 { margin-top: 3rem; font-size: clamp(1.55rem, 3vw, 2.1rem); }
.legal-content h3 { margin-top: 2rem; font-size: 1.25rem; }
.legal-content a { color: var(--ab-accent-light); overflow-wrap: anywhere; }

.reveal { opacity: 0; transform: translateY(1.1rem); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 74.99rem) {
	.card-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.special-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.special-card, .special-card:nth-child(4), .special-card:nth-child(5) { grid-column: auto; }
	.elementor .card-grid > .e-con-inner,
	.elementor .special-grid > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.elementor .special-grid > .e-con-inner > .special-card,
	.elementor .special-grid > .e-con-inner > .special-card:nth-child(4),
	.elementor .special-grid > .e-con-inner > .special-card:nth-child(5) { grid-column: auto; }
	.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 62rem) {
	.hero__grid, .team__grid { grid-template-columns: 1fr; }
	.elementor .hero__grid > .e-con-inner,
	.elementor .team__grid > .e-con-inner,
	.elementor .split-layout > .e-con-inner { grid-template-columns: minmax(0, 1fr); }
	.hero__visual { min-height: 20rem; }
	.split-layout { grid-template-columns: 1fr; }
	.split-layout .section-heading { position: static; margin-bottom: 0; }
}

@media (max-width: 47.99rem) {
	.site-shell { width: min(calc(100% - 2rem), var(--ab-shell)); }
	.site-header__inner { min-height: 4.5rem; }
	.nav-toggle { display: block; }
	.primary-navigation { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; padding: 1.25rem 1rem 1.5rem; border-bottom: 1px solid var(--ab-border); background: var(--ab-bg-deep); flex-direction: column; align-items: stretch; }
	.primary-navigation.is-open { display: flex; }
	.primary-navigation a { padding: .65rem; text-align: center; }
	.hero { min-height: auto; padding-top: 5rem; }
	.hero__grid { gap: 3rem; }
	.elementor .hero__grid > .e-con-inner { gap: 3rem; }
	.hero__visual { min-height: 17rem; }
	.hero__orb { width: 9rem; height: 9rem; }
	.benefit-list ul { flex-direction: column; }
	.button-row { align-items: stretch; flex-direction: column; }
	.button-row .button { width: 100%; }
	.text-link { text-align: center; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
	.elementor .stats-grid > .e-con-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 0; }
	.stats-grid > div, .stats-grid > div:first-child { padding-left: 1.25rem; border-left: 1px solid var(--ab-border); }
	.stats-grid > div:nth-child(odd) { padding-left: 0; border-left: 0; }
	.elementor .stats-grid > .e-con-inner > .stat-item { padding-left: 1.25rem; border-left: 1px solid var(--ab-border); }
	.elementor .stats-grid > .e-con-inner > .stat-item:nth-child(odd) { padding-left: 0; border-left: 0; }
	.card-grid--three, .special-grid { grid-template-columns: 1fr; }
	.elementor .card-grid > .e-con-inner,
	.elementor .special-grid > .e-con-inner { grid-template-columns: minmax(0, 1fr); }
	.card { min-height: 13rem; }
	.feature { grid-template-columns: 1fr; gap: .5rem; }
	.elementor .feature > .e-con-inner { grid-template-columns: minmax(0, 1fr); gap: .5rem; }
	.timeline li, .timeline-item { min-height: 10rem; gap: 1.25rem; }
	.elementor .timeline-item > .e-con-inner { gap: 1.25rem; }
	.portrait-placeholder { min-height: 27rem; }
	.anton-portrait, .anton-portrait .elementor-widget-container { min-height: 27rem; }
	.anton-portrait img { height: 27rem; }
	.elementor .anton-portrait, .elementor .anton-portrait .elementor-widget-container { min-height: 24rem; }
	.elementor .anton-portrait img { height: 24rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { padding-block: 1.4rem; flex-direction: column; align-items: flex-start; justify-content: center; }
	.section { padding-block: clamp(3.25rem, 12vw, 4rem); }
	.elementor .site-shell { width: min(calc(100% - 2rem), var(--ab-shell)); }
	.elementor .reveal { opacity: 1; transform: none; transition: none; }
}

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