/* ==========================================================
   AlterMind - AI Foundations Program
   ========================================================== */

.ai-foundations-page .page-hero {
	position: relative;
	overflow: hidden;
	padding: 170px 0 110px;
}

.ai-foundations-page .page-hero .am-container {
	max-width: 1000px;
}

.ai-foundations-page .page-hero h1 {
	margin: 20px 0;
	color: #fff;
	font-size: clamp(42px, 6vw, 68px);
}

.ai-foundations-page .page-hero p {
	max-width: 800px;
	margin: 0 auto;
	color: rgba(255,255,255,.74);
	line-height: 1.9;
}

.ai-foundations-page .page-hero .am-buttons {
	justify-content: center;
	margin-top: 35px;
	gap: 15px;
}

.ai-foundations-outcomes,
.ai-foundations-curriculum,
.ai-foundations-cta {
	padding: 110px 0;
}

.ai-foundations-outcomes .section-title,
.ai-foundations-curriculum .section-title {
	max-width: 800px;
	margin: 0 auto 65px;
}

.ai-foundations-outcomes .grid-2,
.ai-foundations-curriculum .grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.ai-foundations-outcomes .card,
.ai-foundations-curriculum .card {
	padding: 40px;
	border-radius: 24px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(18px);
}

.ai-foundations-outcomes .card h3,
.ai-foundations-curriculum .card h3 {
	margin-bottom: 18px;
	color: #fff;
}

.ai-foundations-outcomes .card p,
.ai-foundations-curriculum .card p {
	color: rgba(255,255,255,.72);
	line-height: 1.8;
}

.ai-foundations-curriculum .card ul {
	margin: 25px 0 0;
	padding: 0;
	list-style: none;
}

.ai-foundations-curriculum .card li {
	padding: 9px 0;
	color: rgba(255,255,255,.82);
	border-bottom: 1px solid rgba(255,255,255,.05);
}

.ai-foundations-curriculum .card li:last-child {
	border-bottom: 0;
}

.ai-foundations-cta .section-title {
	max-width: 900px;
	margin: auto;
	padding: 70px 60px;
	border-radius: 28px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(20px);
}

.ai-foundations-cta .am-buttons {
	justify-content: center;
	margin-top: 40px;
}

@media (max-width: 992px) {

	.ai-foundations-outcomes .grid-2,
	.ai-foundations-curriculum .grid-2 {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 768px) {

	.ai-foundations-page .page-hero {
		padding: 130px 0 80px;
	}

	.ai-foundations-outcomes,
	.ai-foundations-curriculum,
	.ai-foundations-cta {
		padding: 75px 0;
	}

	.ai-foundations-page .page-hero .am-buttons {
		flex-direction: column;
	}

	.ai-foundations-page .page-hero .btn {
		width: 100%;
	}

	.ai-foundations-cta .section-title {
		padding: 40px 25px;
	}

}

/* ==========================================================
   AI FOUNDATIONS ENQUIRY
   ========================================================== */

.ai-foundations-enquiry {
	padding: 110px 0;
}

.ai-foundations-enquiry-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	align-items: start;
}

.ai-foundations-enquiry-intro {
	padding: 45px;
	border-radius: 26px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
}

.ai-foundations-enquiry-intro span {
	color: var(--accent);
	font-weight: 700;
}

.ai-foundations-enquiry-intro h2 {
	color: #fff;
	margin: 18px 0;
}

.ai-foundations-enquiry-intro p {
	color: rgba(255,255,255,.72);
	line-height: 1.8;
}

.ai-foundations-enquiry-intro ul {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.ai-foundations-enquiry-intro li {
	padding: 10px 0;
	color: rgba(255,255,255,.82);
}

.ai-foundations-enquiry-form {
	padding: 45px;
	border-radius: 26px;
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.08);
}

.ai-foundations-enquiry-form .altermind-enquiry-heading h2 {
	color: #fff;
}

.ai-foundations-enquiry-form .altermind-enquiry-heading p {
	color: rgba(255,255,255,.72);
}

.ai-foundations-enquiry-form .altermind-enquiry-field {
	margin-bottom: 22px;
}

.ai-foundations-enquiry-form .altermind-enquiry-field label {
	display: block;
	margin-bottom: 8px;
	color: #fff;
	font-weight: 600;
}

.ai-foundations-enquiry-form input,
.ai-foundations-enquiry-form select,
.ai-foundations-enquiry-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.05);
	color: #fff;
	font: inherit;
}

.ai-foundations-enquiry-form textarea {
	resize: vertical;
	min-height: 140px;
}

.ai-foundations-enquiry-form input:focus,
.ai-foundations-enquiry-form select:focus,
.ai-foundations-enquiry-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.ai-foundations-enquiry-form .altermind-enquiry-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 24px;
	border: 0;
	border-radius: 12px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	visibility: visible;
	opacity: 1;
}

.ai-foundations-enquiry-form .altermind-enquiry-submit:hover {
	opacity: .9;
}

@media (max-width: 992px) {

	.ai-foundations-enquiry-wrapper {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 768px) {

	.ai-foundations-enquiry {
		padding: 75px 0;
	}

	.ai-foundations-enquiry-intro,
	.ai-foundations-enquiry-form {
		padding: 30px;
	}

}