/* Homepage — inspired by auxein.com layout */

.site-main--front {
	padding-block: 0;
	max-width: none;
}

.aot-container {
	max-width: 72rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.aot-section {
	padding-block: 4rem;
}

.aot-section__header {
	max-width: 42rem;
	margin-bottom: 2.5rem;
}

.aot-section__header--center {
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
}

.aot-section__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
	color: var(--aot-brand);
}

.aot-section__title--light {
	color: var(--aot-white);
}

.aot-section__lead {
	margin: 0;
	color: var(--aot-muted);
	font-size: 1.05rem;
}

.aot-section__actions {
	margin-top: 2rem;
}

.aot-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 0.35rem;
	background: var(--aot-accent);
	color: var(--aot-white) !important;
	font-weight: 600;
	text-decoration: none !important;
}

.aot-btn:hover {
	background: var(--aot-accent-dark);
	color: var(--aot-white) !important;
}

.aot-btn--light {
	background: var(--aot-white);
	color: var(--aot-brand) !important;
}

.aot-btn--light:hover {
	background: #e8f7f4;
}

.aot-btn--outline {
	background: transparent;
	border: 2px solid var(--aot-accent);
	color: var(--aot-accent-dark) !important;
}

.aot-btn--outline-light {
	background: transparent;
	border: 2px solid rgb(255 255 255 / 70%);
	color: var(--aot-white) !important;
}

/* Hero */
.aot-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--aot-brand-dark), var(--aot-brand) 55%, var(--aot-brand-accent));
	color: var(--aot-white);
	min-height: 28rem;
}

.aot-hero__slides {
	position: relative;
	min-height: 28rem;
}

.aot-hero__slide {
	display: none;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	min-height: 28rem;
	padding: 3rem 1.5rem 4rem;
	max-width: 72rem;
	margin-inline: auto;
}

.aot-hero__slide.is-active {
	display: grid;
}

@media (min-width: 48rem) {
	.aot-hero__slide {
		grid-template-columns: 1.1fr 0.9fr;
		padding-inline: 1.5rem;
	}
}

.aot-hero__tag {
	margin: 0 0 0.75rem;
	color: #7ee8d8;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.aot-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.aot-hero__text {
	margin: 0 0 1.5rem;
	max-width: 34rem;
	color: rgb(255 255 255 / 88%);
	font-size: 1.05rem;
}

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

.aot-hero__orb {
	width: min(18rem, 70vw);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #00c4b0, #35347e 55%, transparent 70%);
	opacity: 0.85;
	filter: blur(0.5px);
}

.aot-hero__dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
}

.aot-hero__dot {
	width: 0.65rem;
	height: 0.65rem;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / 35%);
	cursor: pointer;
}

.aot-hero__dot.is-active {
	background: var(--aot-white);
}

/* Stats ticker */
.aot-stats {
	overflow: hidden;
	background: var(--aot-brand);
	color: var(--aot-white);
	padding-block: 1rem;
}

.aot-stats__track {
	display: flex;
	width: max-content;
	animation: aot-marquee 35s linear infinite;
}

.aot-stats__group {
	display: flex;
	gap: 3rem;
	padding-inline: 1.5rem;
}

.aot-stats__item {
	display: flex;
	flex-direction: column;
	min-width: 12rem;
}

.aot-stats__value {
	font-size: 1.5rem;
	font-weight: 700;
}

.aot-stats__label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.85;
}

@keyframes aot-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* About */
.aot-about__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 48rem) {
	.aot-about__grid {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: start;
	}
}

.aot-about__values {
	display: grid;
	gap: 1rem;
}

.aot-about__value {
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--aot-accent);
	background: var(--aot-white);
	box-shadow: 0 8px 24px rgb(10 37 64 / 6%);
}

.aot-about__value h3 {
	margin: 0;
	color: var(--aot-brand);
}

/* Product category cards */
.aot-products-home {
	background: var(--aot-white);
}

.aot-product-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.aot-product-card {
	display: block;
	padding: 1.5rem;
	border: 1px solid #e3eaf0;
	border-radius: 0.5rem;
	background: var(--aot-surface);
	color: inherit;
	text-decoration: none !important;
	transition: transform 0.2s, box-shadow 0.2s;
}

.aot-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgb(10 37 64 / 10%);
}

.aot-product-card__num {
	color: var(--aot-accent);
	font-weight: 700;
	font-size: 0.9rem;
}

.aot-product-card__title {
	margin: 0.5rem 0;
	color: var(--aot-brand);
}

.aot-product-card__text {
	margin: 0;
	color: var(--aot-muted);
	font-size: 0.95rem;
}

.aot-product-card__link {
	display: inline-block;
	margin-top: 1rem;
	color: var(--aot-accent-dark);
	font-weight: 600;
}

/* Certifications */
.aot-certs {
	background: linear-gradient(180deg, #eef4f8, var(--aot-surface));
}

.aot-certs__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.aot-cert-card {
	padding: 2rem 1.5rem;
	background: var(--aot-white);
	border-top: 4px solid var(--aot-accent);
	box-shadow: 0 8px 24px rgb(10 37 64 / 6%);
}

.aot-cert-card__value {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--aot-brand);
	line-height: 1;
}

.aot-cert-card__title {
	margin: 0.75rem 0 0.5rem;
	color: var(--aot-brand);
}

.aot-cert-card__text {
	margin: 0;
	color: var(--aot-muted);
}

/* Testimonials */
.aot-testimonials {
	background: var(--aot-white);
}

.aot-testimonials__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.aot-testimonial-card {
	margin: 0;
	padding: 2rem 1.75rem;
	background: linear-gradient(180deg, #f8fbfd, var(--aot-surface));
	border: 1px solid #e3eaf0;
	border-radius: 0.5rem;
	box-shadow: 0 8px 24px rgb(10 37 64 / 5%);
}

.aot-testimonial-card::before {
	content: "\201C";
	display: block;
	margin-bottom: 0.75rem;
	font-size: 2.75rem;
	line-height: 1;
	font-weight: 700;
	color: var(--aot-accent);
}

.aot-testimonial-card__quote {
	margin: 0 0 1.25rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--aot-text);
	font-style: normal;
}

.aot-testimonial-card__footer {
	border-top: 1px solid #dde6ee;
	padding-top: 1rem;
}

.aot-testimonial-card__name {
	display: block;
	font-style: normal;
	font-weight: 700;
	color: var(--aot-brand);
}

.aot-testimonial-card__role {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	color: var(--aot-muted);
}

/* Events */
.aot-event-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.aot-event-card {
	padding: 1.5rem;
	background: var(--aot-white);
	border: 1px solid #e3eaf0;
	border-radius: 0.5rem;
}

.aot-event-card__title {
	margin: 0 0 0.5rem;
}

.aot-event-card__title a {
	color: var(--aot-brand);
	text-decoration: none;
}

.aot-event-card__meta {
	margin: 0;
	color: var(--aot-accent-dark);
	font-weight: 600;
}

/* CTA */
.aot-cta {
	background: linear-gradient(135deg, var(--aot-brand-dark), var(--aot-brand-accent));
	color: var(--aot-white);
}

.aot-cta__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.aot-cta__text {
	margin: 0;
	max-width: 36rem;
	color: rgb(255 255 255 / 88%);
}

.aot-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
