/*=========================================
Hero Section
=========================================*/

.awti-hero{
	background:#fff;
	border:1px solid #e5e7eb;
	border-radius:22px;
	padding:30px;
	margin-bottom:25px;
	box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.awti-hero-top{
	display:flex;
	align-items:center;
	gap:22px;
	flex-wrap:wrap;
}

.awti-hero-logo img{
	width:90px;
	height:90px;
	object-fit:cover;
	border-radius:18px;
	background:#fff;
	border:1px solid #e5e7eb;
	box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.awti-hero-info h1{
	margin:0;
	font-size:30px;
	font-weight:800;
	color:#111827;
	line-height:1.4;
}

.awti-price-band{
	margin-top:14px;
}

.awti-price-band span{
	display:block;
	font-size:14px;
	color:#6b7280;
	margin-bottom:6px;
	font-weight:600;
}

.awti-price-band strong{
	font-size:24px;
	font-weight:800;
	color:#2563eb;
}

.awti-hero-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:18px;
	margin-top:28px;
}

.awti-box{
	background:#f8fafc;
	border:1px solid #e5e7eb;
	border-radius:16px;
	padding:18px;
	text-align:center;
	transition:.3s;
}

.awti-box:hover{
	transform:translateY(-3px);
	border-color:#2563eb;
	box-shadow:0 12px 25px rgba(37,99,235,.12);
}

.awti-box span{
	display:block;
	font-size:14px;
	font-weight:600;
	color:#64748b;
	margin-bottom:8px;
}

.awti-box strong{
	display:block;
	font-size:18px;
	font-weight:700;
	color:#111827;
}

/*=========================================
Mobile
=========================================*/

@media (max-width:768px){

	.awti-hero{
		padding:20px;
		border-radius:18px;
	}

	.awti-hero-top{
		flex-direction:column;
		text-align:center;
	}

	.awti-hero-logo img{
		width:80px;
		height:80px;
	}

	.awti-hero-info h1{
		font-size:24px;
	}

	.awti-price-band strong{
		font-size:21px;
	}

	.awti-hero-grid{
		grid-template-columns:1fr;
		gap:15px;
	}

}