:root {
	--ah-white: #ffffff;
	--ah-bg: #f8fafc;
	--ah-green: #1b8a5a;
	--ah-green-dark: #156f48;
	--ah-yellow: #fdb813;
	--ah-sky: #2d9cdb;
	--ah-navy: #0f172a;
	--ah-text-primary: #0f172a;
	--ah-text-secondary: #475569;
	--ah-text-muted: #64748b;
	--ah-border: #e5e7eb;
	--ah-success: #22c55e;
	--ah-radius: 18px;
	--ah-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ah-white);
	color: var(--ah-text-primary);
	font-family: "Inter", "Open Sans", "Roboto", "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.85rem;
	color: var(--ah-navy);
	font-family: "Sora", "Poppins", "Montserrat", "Segoe UI", sans-serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

p {
	margin: 0 0 1rem;
	color: var(--ah-text-secondary);
}

a {
	color: var(--ah-green);
	text-decoration: none;
	transition: color 0.22s ease;
}

a:hover,
a:focus {
	color: var(--ah-sky);
}

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

.ah-container {
	width: min(1240px, calc(100% - 2rem));
	margin-inline: auto;
}

.ah-site-main {
	min-height: 62vh;
}

.ah-section {
	padding: 5rem 0;
}

.ah-section-muted {
	background:
		radial-gradient(circle at 8% 6%, rgba(45, 156, 219, 0.12), transparent 34%),
		radial-gradient(circle at 90% 92%, rgba(253, 184, 19, 0.14), transparent 30%),
		var(--ah-bg);
}

.ah-grid {
	display: grid;
	gap: 1.1rem;
}

.ah-grid.two,
.cards-3,
.cards-4 {
	grid-template-columns: 1fr;
}

.ah-section-heading {
	max-width: 860px;
	margin-bottom: 1.8rem;
}

.ah-heading-row {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.ah-eyebrow {
	margin-bottom: 0.68rem;
	font-size: 14px;
	font-weight: 600;
	color: #b77900;
	text-transform: none;
	letter-spacing: 0.05em;
}

.ah-small-text {
	font-size: 14px;
	color: var(--ah-text-muted);
}

.ah-link {
	font-weight: 600;
	color: var(--ah-green);
}

.ah-link:hover,
.ah-link:focus {
	color: var(--ah-sky);
}

.ah-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.84rem 1.3rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ah-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.38rem;
	line-height: 1;
}

.ah-btn:hover,
.ah-btn:focus {
	transform: translateY(-1px);
}

.ah-btn-primary {
	background: var(--ah-green);
	color: var(--ah-white);
	box-shadow: 0 10px 22px rgba(27, 138, 90, 0.24);
}

.ah-btn-primary:hover,
.ah-btn-primary:focus {
	background: var(--ah-green-dark);
	color: var(--ah-white);
	box-shadow: 0 12px 26px rgba(21, 111, 72, 0.26);
}

.ah-btn-outline {
	background: var(--ah-white);
	border-color: var(--ah-green);
	color: var(--ah-green);
}

.ah-btn-outline:hover,
.ah-btn-outline:focus {
	background: #fff7df;
	border-color: var(--ah-green-dark);
	color: var(--ah-green-dark);
}

.ah-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.ah-card {
	background: var(--ah-white);
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius);
	padding: 1.25rem;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.ah-card h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 0.62rem;
}

.ah-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #144766;
	background: linear-gradient(130deg, #dff2ff, #fff2cc);
	margin-bottom: 0.86rem;
}

.ah-premium-card,
.ah-sector-card,
.ah-equipment-item,
.ah-process-item,
.ah-package-card,
.ah-testimonial-card {
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ah-premium-card:hover,
.ah-sector-card:hover,
.ah-package-card:hover,
.ah-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: #cfd6e0;
	box-shadow: var(--ah-shadow);
}

.ah-phone-link,
.ah-whatsapp-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.88rem;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
}

.ah-phone-link {
	background: #eef7ff;
	border: 1px solid #d2e9fb;
	color: #205784;
}

.ah-whatsapp-link {
	background: linear-gradient(130deg, var(--ah-yellow), #ffd766);
	color: #4a3500;
}

.ah-whatsapp-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ah-green);
	color: var(--ah-white);
	box-shadow: 0 8px 18px rgba(27, 138, 90, 0.24);
}

.ah-whatsapp-icon-link:hover,
.ah-whatsapp-icon-link:focus {
	background: var(--ah-green-dark);
	color: var(--ah-white);
}

.ah-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.ah-header-top {
	background: #102643;
	color: #d5e7f7;
	font-size: 14px;
}

.ah-header-top-inner {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ah-header-top p {
	margin: 0;
	color: #d5e7f7;
	font-size: 14px;
	font-weight: 500;
}

.ah-header-top ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	gap: 1rem;
}

.ah-header-top a {
	color: #e8f3ff;
	font-size: 14px;
}

.ah-header-main {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #e6edf4;
}

.ah-header-inner {
	min-height: 84px;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 0.8rem;
}

.ah-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.56rem;
	font-family: "Sora", "Poppins", "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ah-navy);
	order: 1;
}

.ah-brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(128deg, var(--ah-green), var(--ah-sky));
	color: var(--ah-white);
	font-size: 14px;
}

.ah-brand-text {
	letter-spacing: 0.08em;
}

.ah-brand-logo {
	display: block;
	width: auto;
	max-width: 210px;
	max-height: 44px;
}

.ah-menu-toggle {
	justify-self: end;
	border: 1px solid #d5e1eb;
	background: #f4f9fe;
	border-radius: 10px;
	padding: 0.45rem 0.72rem;
	font-size: 14px;
	font-weight: 600;
	color: #225884;
	order: 3;
}

.ah-main-nav {
	grid-column: 1 / -1;
	display: none;
	order: 4;
}

.ah-main-nav.is-open {
	display: block;
}

.ah-main-nav ul,
.ah-main-nav .menu {
	list-style: none;
	margin: 0;
	padding: 0.75rem 0 0.25rem;
	display: grid;
	gap: 0.55rem;
}

.ah-main-nav a {
	display: inline-flex;
	color: #27435d;
	font-size: 15px;
	font-weight: 600;
}

.ah-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	order: 2;
	justify-self: end;
}

.ah-hero-v4 {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 14%, rgba(253, 184, 19, 0.36), transparent 30%),
		radial-gradient(circle at 18% 100%, rgba(45, 156, 219, 0.28), transparent 40%),
		linear-gradient(180deg, #f9fcff 0%, #eef7ff 100%);
}

.ah-hero-v4::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(120deg, rgba(45, 156, 219, 0.08) 18%, transparent 18%, transparent 48%, rgba(253, 184, 19, 0.08) 48%, rgba(253, 184, 19, 0.08) 70%, transparent 70%, transparent);
	background-size: 120px 120px;
	opacity: 0.35;
}

.ah-hero-v4-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.3rem;
	align-items: center;
}

.ah-hero-v4-copy h1 {
	font-size: 28px;
	font-weight: 600;
}

.ah-hero-v4-copy p {
	font-size: 17px;
}

.ah-hero-mini-points {
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}

.ah-hero-mini-points li {
	position: relative;
	padding-left: 1.16rem;
	font-size: 16px;
	color: var(--ah-text-secondary);
	font-weight: 500;
}

.ah-hero-mini-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.52rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(130deg, var(--ah-green), var(--ah-sky));
}

.ah-hero-v4-visual {
	position: relative;
}

.ah-hero-installation-photo {
	min-height: 370px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--ah-shadow);
}

.ah-hero-installation-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ah-solar-scene {
	position: relative;
	height: 390px;
	border-radius: 22px;
	border: 1px solid #d2e2ee;
	background: linear-gradient(180deg, #dff2ff 0%, #eff8ff 60%, #f8fbff 100%);
	overflow: hidden;
	box-shadow: var(--ah-shadow);
}

.ah-solar-sun {
	position: absolute;
	top: 34px;
	right: 58px;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: radial-gradient(circle, #ffefb8 0%, #ffd362 55%, rgba(255, 211, 98, 0) 70%);
	box-shadow: 0 0 58px rgba(253, 184, 19, 0.58);
}

.ah-solar-cloud {
	position: absolute;
	background: #ffffffcc;
	border-radius: 999px;
}

.ah-solar-cloud-a {
	top: 74px;
	left: 52px;
	width: 90px;
	height: 26px;
}

.ah-solar-cloud-b {
	top: 118px;
	left: 120px;
	width: 64px;
	height: 20px;
}

.ah-solar-home {
	position: absolute;
	bottom: 104px;
	left: 62px;
	width: 172px;
	height: 102px;
	background: #f8f1e3;
	border-radius: 12px 12px 0 0;
}

.ah-solar-roof {
	position: absolute;
	bottom: 194px;
	left: 52px;
	width: 192px;
	height: 24px;
	background: #9eb0c2;
	transform: skewX(-24deg);
	border-radius: 8px;
}

.ah-solar-panels {
	position: absolute;
	bottom: 48px;
	right: 40px;
	width: 230px;
	height: 124px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 8px;
	background: #163150;
	border-radius: 14px;
	border: 1px solid #2d5276;
	transform: rotate(-12deg);
}

.ah-solar-panels span {
	border-radius: 6px;
	background: linear-gradient(150deg, #41a8ef, #265f95);
}

.ah-solar-lines {
	position: absolute;
	inset: auto 0 0 0;
	height: 72px;
	background:
		radial-gradient(circle at 12% 40%, rgba(27, 138, 90, 0.24), transparent 24%),
		radial-gradient(circle at 45% 60%, rgba(45, 156, 219, 0.28), transparent 22%),
		repeating-linear-gradient(120deg, rgba(27, 138, 90, 0.12), rgba(27, 138, 90, 0.12) 2px, transparent 2px, transparent 18px);
}

.ah-hero-float-card {
	position: absolute;
	bottom: -18px;
	left: 14px;
	right: 14px;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	border: 1px solid #dce5ee;
	background: #fffffff2;
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.11);
}

.ah-hero-float-card strong {
	display: block;
	font-size: 16px;
	margin-bottom: 0.24rem;
}

.ah-wave-section {
	position: relative;
}

.ah-wave-section::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -48px;
	height: 56px;
	background: radial-gradient(60px 28px at 20% 100%, #ffffff 98%, transparent 100%), radial-gradient(70px 28px at 52% 100%, #ffffff 98%, transparent 100%), radial-gradient(58px 28px at 82% 100%, #ffffff 98%, transparent 100%);
	pointer-events: none;
}

.ah-equipment-item {
	border-left: 4px solid #dce3ea;
}

.ah-equipment-item:nth-child(6n + 1) {
	border-left-color: var(--ah-sky);
}

.ah-equipment-item:nth-child(6n + 2) {
	border-left-color: var(--ah-green);
}

.ah-equipment-item:nth-child(6n + 3) {
	border-left-color: var(--ah-yellow);
}

.ah-equipment-item:nth-child(6n + 4) {
	border-left-color: #4474c5;
}

.ah-equipment-item:nth-child(6n + 5) {
	border-left-color: #2f9967;
}

.ah-equipment-item:nth-child(6n) {
	border-left-color: #d2930c;
}

.ah-process-section {
	background:
		radial-gradient(circle at 90% 0%, rgba(253, 184, 19, 0.2), transparent 30%),
		#f6fbff;
}

.ah-process-v2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.8rem;
}

.ah-process-item h3 {
	font-size: 19px;
}

.ah-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.ah-check-list li {
	position: relative;
	padding-left: 1.28rem;
	font-size: 16px;
	font-weight: 500;
	color: #355069;
}

.ah-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.53rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(130deg, var(--ah-green), var(--ah-sky));
}

.ah-maintenance-card {
	background:
		radial-gradient(circle at 85% 20%, rgba(253, 184, 19, 0.24), transparent 35%),
		linear-gradient(170deg, #f4fbff 0%, #eaf7ff 100%);
}

.ah-package-card {
	position: relative;
	padding-top: 1.58rem;
}

.ah-package-badge {
	position: absolute;
	top: 0.82rem;
	right: 0.82rem;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	border: 1px solid #b5d8f3;
	background: #e1f2ff;
	color: #194f7c;
	font-size: 14px;
	font-weight: 600;
}

.ah-package-price {
	font-size: 20px;
	font-weight: 600;
	color: #154c78;
	margin-bottom: 0.7rem;
}

.ah-package-features {
	list-style: none;
	margin: 0 0 0.95rem;
	padding: 0;
	display: grid;
	gap: 0.38rem;
}

.ah-package-features li {
	position: relative;
	padding-left: 1.04rem;
	font-size: 16px;
	color: #425b74;
}

.ah-package-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.56rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ah-success);
}

.ah-package-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.ah-testimonial-tag {
	display: inline-flex;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	border: 1px solid #f8dd9a;
	background: #fff4d4;
	color: #8b6500;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0.68rem;
}

.ah-testimonial-text {
	font-size: 16px;
	font-style: italic;
	color: #425d76;
}

.ah-contact-quote-section {
	background:
		radial-gradient(circle at 0% 100%, rgba(45, 156, 219, 0.2), transparent 26%),
		#f8fcff;
}

.ah-contact-quote-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.ah-contact-quote-info ul {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.ah-contact-quote-info li {
	font-size: 16px;
	color: #3f5971;
}

.ah-content-wrap {
	max-width: 870px;
}

.ah-content-wrap ul {
	padding-left: 1.2rem;
}

.ah-page-hero {
	padding: 4rem 0 2.8rem;
	background:
		radial-gradient(circle at 90% 10%, rgba(45, 156, 219, 0.2), transparent 32%),
		#f5fbff;
	border-bottom: 1px solid #deebf4;
}

.ah-post-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.ah-contact-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.ah-contact-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.66rem;
}

.ah-single-post .ah-featured-image {
	margin-bottom: 1.2rem;
	border-radius: 14px;
	overflow: hidden;
}

.ah-quote-form .ah-field {
	margin-bottom: 1rem;
}

.ah-quote-form label {
	display: block;
	margin-bottom: 0.37rem;
	font-size: 14px;
	font-weight: 600;
	color: #28445e;
}

.ah-quote-form input,
.ah-quote-form textarea,
.ah-quote-form select {
	width: 100%;
	border: 1px solid #d0dde8;
	border-radius: 12px;
	padding: 0.7rem 0.76rem;
	font-family: inherit;
	font-size: 16px;
}

.ah-quote-form input:focus,
.ah-quote-form textarea:focus,
.ah-quote-form select:focus {
	border-color: var(--ah-sky);
	outline: 2px solid #d8ecff;
}

.ah-form-alert {
	padding: 0.75rem 0.85rem;
	border-radius: 10px;
	font-weight: 600;
	margin-bottom: 1rem;
}

.ah-form-success {
	background: #ebfaef;
	color: #1b6a46;
}

.ah-form-error {
	background: #ffe9e8;
	color: #8a302a;
}

.ah-inline-cta {
	padding: 2.8rem 0;
	background:
		radial-gradient(circle at 100% 0%, rgba(253, 184, 19, 0.28), transparent 35%),
		linear-gradient(110deg, #0f2947, #145970);
	color: #f2fbff;
}

.ah-inline-cta h2,
.ah-inline-cta p {
	color: #eaf7ff;
}

.ah-inline-cta-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ah-woocommerce-wrap ul.products {
	margin-top: 1.2rem;
}

.ah-woocommerce-wrap .products .product {
	position: relative;
	padding: 1rem !important;
	border: 1px solid #d8e4ee;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ah-woocommerce-wrap .products .product img {
	border-radius: 10px;
}

.ah-woocommerce-wrap .products .product .woocommerce-loop-product__title {
	font-size: 20px;
	line-height: 1.35;
	margin-bottom: 0.45rem;
	min-height: 2.7em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ah-woocommerce-wrap .products .product .price,
.ah-woocommerce-wrap .products .product .ah-inquiry-price {
	min-height: 1.5em;
	display: inline-flex;
	align-items: center;
}

.ah-woocommerce-wrap .woocommerce-result-count,
.ah-woocommerce-wrap .woocommerce-ordering {
	margin-bottom: 1rem;
}

.ah-inquiry-price {
	font-weight: 700;
	color: #19598b;
}

.ah-product-loop-badge {
	display: inline-flex;
	margin-bottom: 0.68rem;
	padding: 0.26rem 0.54rem;
	border-radius: 999px;
	border: 1px solid #b8d9f2;
	background: #dff0ff;
	color: #1b4e79;
	font-size: 14px;
	font-weight: 600;
}

.ah-product-loop-features {
	list-style: none;
	margin: 0.54rem 0 0.72rem;
	padding: 0;
	display: grid;
	gap: 0.31rem;
	min-height: 5.1em;
}

.ah-product-loop-features li {
	font-size: 14px;
	color: #495f75;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ah-product-cta-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.ah-product-inquiry-btn,
.ah-product-whatsapp-btn {
	border-radius: 999px !important;
	padding: 0.64rem 1rem !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	border: 0 !important;
}

.ah-product-inquiry-btn {
	background: var(--ah-green) !important;
	color: #ffffff !important;
	margin-top: auto;
	width: 100%;
	justify-content: center;
	text-align: center;
}

.ah-product-inquiry-btn:hover,
.ah-product-inquiry-btn:focus {
	background: var(--ah-green-dark) !important;
}

.ah-product-whatsapp-btn {
	background: linear-gradient(130deg, var(--ah-yellow), #ffd766) !important;
	color: #4a3500 !important;
}

.ah-product-specs {
	margin-top: 1.4rem;
	padding: 1.15rem;
	border: 1px solid #d8e4ee;
	border-radius: 14px;
	background: #f7fbff;
}

.ah-product-specs h3 {
	font-size: 20px;
}

.ah-product-specs ul {
	padding-left: 1rem;
}

.ah-product-spec-lines {
	margin: 0.2rem 0 0;
	padding-left: 1.15rem;
}

.ah-site-footer {
	background: linear-gradient(180deg, #0d2945 0%, #113657 100%);
	color: #d0e5f7;
}

.ah-footer-cta {
	padding: 2.35rem 0 2rem;
	border-bottom: 1px solid rgba(219, 236, 252, 0.16);
}

.ah-footer-cta-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ah-footer-cta h2 {
	color: #f2f9ff;
	max-width: 760px;
	font-size: clamp(30px, 3vw, 34px);
}

.ah-footer-grid {
	padding: 2.2rem 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.35rem;
}

.ah-footer-brand-col p {
	color: #c8dff3;
	font-size: 14px;
	line-height: 1.6;
}

.ah-social-links {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.55rem;
}

.ah-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(226, 241, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	color: #e2f1ff;
}

.ah-social-links a:hover,
.ah-social-links a:focus {
	background: rgba(253, 184, 19, 0.18);
	border-color: rgba(253, 184, 19, 0.55);
	color: #fff4d2;
}

.ah-footer-list,
.ah-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.56rem;
}

.ah-site-footer h3 {
	color: #f0f8ff;
	font-size: 17px;
	font-weight: 600;
}

.ah-site-footer a {
	color: #e2f1ff;
	font-size: 14px;
}

.ah-footer-list li {
	font-size: 14px;
	color: #c9dff2;
}

.ah-footer-bottom {
	border-top: 1px solid rgba(211, 232, 249, 0.2);
}

.ah-footer-bottom-inner {
	padding: 0.95rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.ah-footer-bottom p {
	margin: 0;
	color: #b8d6ee;
	font-size: 13px;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.screen-reader-text:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	background: #ffffff;
	color: #0f2f4f;
}

@media (min-width: 700px) {
	body {
		font-size: 17px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 19px;
	}

	.ah-card h3 {
		font-size: 19px;
	}

	.ah-hero-v4-copy h1 {
		font-size: 34px;
	}

	.cards-3,
	.ah-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.ah-grid.two,
	.ah-contact-grid,
	.ah-contact-quote-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.ah-header-top ul {
		display: flex;
	}
}

@media (min-width: 1080px) {
	body {
		font-size: 18px;
	}

	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 20px;
	}

	.ah-card h3 {
		font-size: 20px;
	}

	.ah-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.ah-menu-toggle {
		display: none;
	}

	.ah-main-nav {
		display: block !important;
		grid-column: auto;
		order: 2;
		justify-self: start;
	}

	.ah-main-nav ul,
	.ah-main-nav .menu {
		padding: 0;
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.ah-header-cta {
		display: inline-flex;
		order: 3;
		justify-self: end;
	}

	.ah-hero-v4-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.ah-hero-v4-copy h1 {
		font-size: 44px;
	}

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

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

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

	.ah-inline-cta-inner,
	.ah-footer-cta-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.ah-footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr 1fr;
	}

	.ah-footer-bottom-inner {
		flex-direction: row;
		justify-content: space-between;
	}

	.ah-heading-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}
