:root {
	--purple: #351a81;
	--purple-dark: #24105f;
	--orange: #fe6600;
	--ink: #24242b;
	--muted: #666671;
	--soft: #f5f3fa;
	--white: #fff;
	--border: #e6e1ef;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	font-family: "Niramit", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: var(--white);
}

a {
	color: var(--purple);
	transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

a:hover,
a:focus {
	color: var(--orange);
	text-decoration: none;
}

.header-section {
	background: #f7f7f7;
}

.header-inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	display: block;
	width: 155px;
	height: auto;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 22px;
}

.header-contact a {
	color: var(--orange);
	font-size: 15px;
}

.header-contact .fa {
	margin-right: 7px;
}

.nav-section {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: linear-gradient(90deg, var(--purple-dark), var(--purple), #8062ce);
	box-shadow: 0 2px 12px rgba(23, 11, 61, .18);
}

.main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.main-menu a {
	display: block;
	padding: 20px 18px;
	color: var(--white);
	font-weight: 600;
	white-space: nowrap;
}

.main-menu li.active a,
.main-menu a:hover,
.main-menu a:focus {
	color: #ffd2b4;
	background: rgba(255, 255, 255, .07);
}

.nav-switch {
	display: none;
	border: 0;
	padding: 8px 10px;
	color: var(--ink);
	font-size: 30px;
	background: transparent;
	cursor: pointer;
}

.site-hero {
	position: relative;
	overflow: hidden;
	padding: 112px 0;
	color: var(--white);
	background: linear-gradient(90deg, rgba(22, 10, 62, .94), rgba(53, 26, 129, .75), rgba(53, 26, 129, .25)), url("../images/banners.jpg") center/cover no-repeat;
}

.site-hero-content {
	max-width: 780px;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: #ffd2b4;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.site-hero h1 {
	margin: 0 0 22px;
	color: var(--white);
	font-size: clamp(40px, 5vw, 66px);
	font-weight: 700;
	line-height: 1.08;
}

.site-hero p {
	max-width: 700px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, .9);
	font-size: 20px;
	line-height: 1.55;
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-site {
	display: inline-block;
	border: 2px solid var(--orange);
	border-radius: 3px;
	padding: 11px 22px;
	color: var(--white);
	font-weight: 700;
	background: var(--orange);
}

.btn-site:hover,
.btn-site:focus {
	color: var(--white);
	background: #db5700;
	border-color: #db5700;
	transform: translateY(-1px);
}

.btn-site-outline {
	color: var(--white);
	border-color: rgba(255, 255, 255, .8);
	background: transparent;
}

.btn-site-outline:hover,
.btn-site-outline:focus {
	color: var(--purple);
	border-color: var(--white);
	background: var(--white);
}

.btn-site-light {
	color: var(--purple);
	border-color: var(--white);
	background: var(--white);
}

.section {
	padding: 78px 0;
}

.section-soft {
	background: var(--soft);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading h2,
.content-copy h2 {
	margin: 0 0 14px;
	color: var(--ink);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}

.section-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.service-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 5px;
	background: var(--white);
	box-shadow: 0 12px 30px rgba(34, 17, 91, .08);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.service-card-body {
	padding: 28px;
}

.service-card h3 {
	margin: 0 0 12px;
	color: var(--purple);
	font-size: 25px;
	font-weight: 700;
}

.service-card p {
	min-height: 78px;
	margin: 0 0 18px;
	color: var(--muted);
}

.text-link {
	font-weight: 700;
}

.text-link .fa {
	margin-left: 6px;
}

.value-grid,
.feature-grid,
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.value-item,
.feature-card,
.contact-card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 5px;
	background: var(--white);
}

.value-item .fa,
.contact-card .fa {
	margin-bottom: 14px;
	color: var(--orange);
	font-size: 30px;
}

.value-item h3,
.feature-card h3,
.contact-card h2 {
	margin: 0 0 10px;
	color: var(--purple);
	font-size: 22px;
	font-weight: 700;
}

.value-item p,
.feature-card p,
.contact-card p {
	margin: 0;
	color: var(--muted);
}

.cta-band {
	padding: 58px 0;
	color: var(--white);
	background: linear-gradient(90deg, var(--purple-dark), var(--purple));
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.cta-band h2 {
	margin: 0 0 8px;
	color: var(--white);
	font-size: 34px;
	font-weight: 700;
}

.cta-band p {
	margin: 0;
	color: rgba(255, 255, 255, .85);
	font-size: 18px;
}

.page-hero {
	padding: 78px 0;
	color: var(--white);
	background: linear-gradient(90deg, rgba(35, 16, 94, .94), rgba(53, 26, 129, .62)), url("../images/innerbanner.jpg") center/cover no-repeat;
}

.page-hero h1 {
	margin: 0 0 12px;
	color: var(--white);
	font-size: 48px;
	font-weight: 700;
}

.page-hero p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 19px;
}

.service-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 46px;
	align-items: start;
}

.service-sidebar {
	overflow: hidden;
	border-radius: 5px;
	color: var(--white);
	background: var(--purple);
}

.service-sidebar > h2 {
	margin: 0;
	padding: 22px 24px 12px;
	color: #ffad76;
	font-size: 22px;
	font-weight: 700;
}

.service-sidebar ul {
	margin: 0;
	padding: 0 24px 22px;
	list-style: none;
}

.service-sidebar li + li {
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.service-sidebar li a {
	display: block;
	padding: 11px 0;
	color: var(--white);
	font-weight: 600;
}

.service-sidebar li a:hover,
.service-sidebar li a:focus {
	color: #ffbd91;
}

.sidebar-contact {
	padding: 24px;
	background: var(--purple-dark);
}

.sidebar-contact h3 {
	margin: 0 0 8px;
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
}

.sidebar-contact p {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, .82);
}

.content-copy {
	min-width: 0;
}

@media (min-width: 992px) {
	.service-layout > .service-sidebar {
		grid-column: 1;
		grid-row: 1;
	}

	.service-layout > .content-copy {
		grid-column: 2;
		grid-row: 1;
	}
}

.content-copy h2 {
	margin-top: 40px;
	font-size: 31px;
}

.content-copy h2:first-child {
	margin-top: 0;
}

.content-copy h3 {
	margin: 28px 0 8px;
	color: var(--purple);
	font-size: 22px;
	font-weight: 700;
}

.content-copy p,
.content-copy li {
	color: var(--muted);
}

.content-copy p {
	margin-bottom: 16px;
}

.check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 24px;
	margin: 18px 0 26px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 24px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 1px;
	color: var(--orange);
	font-family: FontAwesome;
	content: "\f00c";
}

.content-image {
	width: 100%;
	max-height: 380px;
	margin: 12px 0 26px;
	border-radius: 5px;
	object-fit: cover;
}

.about-split {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 48px;
	align-items: center;
}

.about-split img {
	width: 100%;
	border-radius: 5px;
}

@media (min-width: 768px) {
	.about-split > .content-copy {
		grid-column: 1;
		grid-row: 1;
	}

	.about-split > img {
		grid-column: 2;
		grid-row: 1;
	}
}

.contact-card a {
	font-weight: 600;
}

.site-footer {
	padding-top: 60px;
	color: rgba(255, 255, 255, .74);
	background: var(--purple-dark);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
	gap: 36px;
	padding-bottom: 45px;
}

.footer-logo {
	width: 145px;
	margin-bottom: 17px;
	filter: brightness(0) invert(1);
}

.site-footer h2 {
	margin: 0 0 16px;
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li {
	margin-bottom: 8px;
}

.site-footer a {
	color: rgba(255, 255, 255, .78);
}

.site-footer a:hover,
.site-footer a:focus {
	color: #ffbd91;
}

.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	text-align: center;
}

.move-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--white);
	line-height: 42px;
	text-align: center;
	background: var(--purple);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.move-top:hover,
.move-top:focus {
	color: var(--white);
	background: var(--orange);
}

@media (max-width: 991px) {
	.header-contact {
		display: none;
	}

	.nav-switch {
		display: block;
	}

	.nav-section {
		position: relative;
	}

	.main-menu {
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.main-menu.is-open {
		display: flex;
	}

	.main-menu a {
		padding: 13px 16px;
		border-top: 1px solid rgba(255, 255, 255, .15);
	}

	.service-grid,
	.value-grid,
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.value-item:last-child {
		grid-column: 1 / -1;
	}

	.service-layout {
		grid-template-columns: 1fr;
	}

	.service-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.service-sidebar > h2,
	.service-sidebar > ul {
		grid-column: 1;
	}

	.sidebar-contact {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

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

@media (max-width: 767px) {
	.header-inner {
		min-height: 64px;
	}

	.site-logo img {
		width: 130px;
	}

	.site-hero {
		padding: 78px 0;
	}

	.site-hero h1 {
		font-size: 40px;
	}

	.site-hero p {
		font-size: 18px;
	}

	.section {
		padding: 58px 0;
	}

	.section-heading h2,
	.content-copy h2 {
		font-size: 30px;
	}

	.service-grid,
	.value-grid,
	.feature-grid,
	.contact-grid,
	.about-split,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.value-item:last-child {
		grid-column: auto;
	}

	.service-card p {
		min-height: 0;
	}

	.cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.page-hero {
		padding: 58px 0;
	}

	.page-hero h1 {
		font-size: 38px;
	}

	.service-sidebar {
		display: block;
	}

	.check-list {
		grid-template-columns: 1fr;
	}
}
