/* Home Page Styles */

/* Hero Section */
.sk-hero {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.sk-hero__slider {
	width: 100%;
}

.sk-hero__slide {
	width: 100%;
	/* Віднімаємо приблизну висоту шапки, щоб слайдер влазив в 1 екран */
	height: calc(100vh - 105px);
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;

	/* Border radius from design */
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	overflow: hidden;

	padding-top: 100px;
	padding-bottom: 60px;
}

/* Gradient Overlay */
.sk-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background: linear-gradient(to bottom, rgba(221, 239, 249, 0.4), rgba(221, 239, 249, 0));
	pointer-events: none;
	z-index: 1;
}

/* Inner Container */
.sk-hero__inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 86px;
	width: 100%;
	height: 100%;
}

/* Typography */
.sk-hero__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1;
	color: #282828;
	text-align: center;
	max-width: 700px;
	margin: 0;
}

/* Button */
.sk-hero__button {
	background-color: #ffffff;
	color: #163c75;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	padding: 18px 40px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.sk-hero__button:hover {
	background-color: #163c75;
	color: #ffffff;
}

/* Flickity overrides for pagination */
.sk-hero__slider .flickity-page-dots {
	bottom: 30px;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	list-style: none;
}

.sk-hero__slider .flickity-page-dots .dot {
	background: #ffffff;
	opacity: 0.5;
	width: 12px;
	height: 12px;
	margin: 0 6px !important;
	padding: 0 !important;
	border-radius: 50%;
}

.sk-hero__slider .flickity-page-dots .dot.is-selected {
	opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.sk-hero__slide {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		padding-top: 60px;
		padding-bottom: 70px;
	}

	.sk-hero__inner {
		gap: 40px;
	}

	.sk-hero__title {
		font-size: 26px;
		color: #ffffff;
		/* From mobile design */
		max-width: 354px;
	}

	.sk-hero__button {
		font-size: 14px;
		padding: 16px 40px;
	}
}

/* About & Stats Section */
.sk-about {
	position: relative;
	width: 100%;
	padding: 80px 0;
	overflow: hidden;
}

.sk-about__bg {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.sk-about__bg--1 {
	top: 0;
	left: 0;
	width: auto;
	max-width: 45%;
}

.sk-about__bg--2 {
	bottom: 0;
	right: 0;
	width: auto;
	max-width: 45%;
}

.sk-about__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Top Section (pushed to right on desktop) */
.sk-about__top {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-left: calc(25% + 5px);
	/* Offset by 1 column */
}

.sk-about__top-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	width: 100%;
	max-width: 655px;
}

.sk-about__main-text {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.1;
	color: #282828;
	margin: 0;
}

/* For span transparency set in ACF */
.sk-about__main-text span {
	color: rgba(40, 40, 40, 0.2);
}

.sk-about__mission {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid #282828;
	border-radius: 10px;
	padding: 24px 20px;
	width: 100%;
	text-align: center;
	color: #282828;
}

.sk-about__mission-title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 32px;
	text-transform: uppercase;
	margin: 0;
}

.sk-about__mission-text {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	margin: 0;
}

.sk-about__btn {
	background-color: #163c75;
	color: #ffffff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 18px 40px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.sk-about__btn:hover {
	opacity: 0.9;
}

/* Stats Grid */
.sk-about__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
}

.sk-stat-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 32px 30px;
	border-radius: 10px;
	min-height: 260px;
	text-align: left;
	line-height: 1.1;
}

.sk-stat-card__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 28px;
	/* Slightly smaller to fit 4 columns gracefully */
	text-transform: uppercase;
	width: 100%;
}

.sk-stat-card__desc {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	width: 100%;
	margin-top: auto;
	/* Push to bottom if needed */
}

/* Modifiers */
.sk-stat-card--gradient {
	background-image: linear-gradient(rgb(37, 94, 179) 0%, rgb(22, 60, 117) 100%), linear-gradient(135deg, rgb(0, 67, 121) 0%, rgb(0, 42, 76) 100%);
	color: #ffffff;
	border: none;
}

.sk-stat-card--white {
	background-color: transparent;
	border: 1px solid #163c75;
	color: #163c75;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-about__bg {
		display: none;
	}

	.sk-about {
		padding: 40px 0;
	}

	.sk-about__top {
		justify-content: flex-start;
		margin-left: 0;
	}

	.sk-about__top-content {
		max-width: 100%;
	}

	.sk-about__main-text {
		font-size: 16px;
	}

	.sk-about__mission-title {
		font-size: 24px;
	}

	.sk-about__mission-text {
		font-size: 18px;
	}

	.sk-about__btn {
		font-size: 14px;
	}

	.sk-about__stats {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	/* Reset grid column starts for mobile */
	.sk-stat-card {
		grid-column-start: auto !important;
	}

	.sk-stat-card {
		padding: 22px 20px;
		min-height: 200px;
	}

	.sk-stat-card__title {
		font-size: 28px;
	}

	.sk-stat-card__desc {
		font-size: 16px;
	}
}

/* Certificate / Intro Features Section */
.sk-cert {
	padding: 80px 0;
}

.sk-cert__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.sk-cert__image {
	flex-shrink: 0;
	width: 182px;
	height: 160px;
	border: 2px solid rgba(0, 67, 121, 0.4);
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sk-cert__image img {
	width: 98.9%;
	height: 100%;
	object-fit: contain;
}

.sk-cert__text {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 38px;
	line-height: 1.1;
	color: #282828;
	max-width: 1000px;
}

.sk-cert__text span {
	color: rgba(40, 40, 40, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-cert {
		padding: 40px 0;
	}

	.sk-cert__inner {
		flex-direction: column;
		justify-content: center;
		gap: 28px;
	}

	.sk-cert__image {
		width: 121px;
		height: 106.37px;
		border-width: 1.33px;
		border-radius: 6.65px;
	}

	.sk-cert__text {
		font-size: 24px;
		text-align: center;
	}
}



/* Section 4: Use Cases */
.sk-use-cases {
	padding: 80px 0;
	padding-top: 0;
}

.sk-use-cases__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 58px;
	line-height: 1.1;
	color: #163c75;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.sk-use-cases__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sk-use-case-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px 20px;
	border: 1px solid #163c75;
	border-radius: 10px;
	aspect-ratio: 1 / 1;
	text-decoration: none;
	transition: all 0.3s ease;
	background-color: transparent;
	color: #163c75;
	position: relative;
	overflow: hidden;
}

/* Pseudo-element for smooth gradient hover */
.sk-use-case-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(#255eb3 0%, #163c75 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.sk-use-case-card>* {
	position: relative;
	z-index: 2;
}

.sk-use-case-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.sk-use-case-card__label {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.1;
	border: 1px solid #163c75;
	border-radius: 20px;
	padding: 6px 20px;
	color: currentColor;
	transition: all 0.3s ease;
}

.sk-use-case-card__icon {
	width: 24px;
	height: 24px;
	color: currentColor;
	transition: all 0.3s ease;
}

.sk-use-case-card__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.1;
	text-transform: uppercase;
	margin: 0;
	color: currentColor;
	transition: all 0.3s ease;
}

/* Hover state */
.sk-use-case-card:hover {
	border-color: transparent;
	color: #ffffff;
}

.sk-use-case-card:hover::before {
	opacity: 1;
}

.sk-use-case-card:hover .sk-use-case-card__label {
	border-color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-use-cases {
		padding: 40px 0;
	}

	.sk-use-cases__title {
		font-size: 34px;
		margin-bottom: 20px;
	}

	.sk-use-cases__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.sk-use-case-card {
		padding: 14px 10px;
		border-radius: 6px;
	}

	.sk-use-case-card__label {
		font-size: 10px;
		/* Increased slightly from 8px for readability */
		padding: 4px 10px;
	}

	.sk-use-case-card__icon {
		width: 16px;
		height: 16px;
	}

	.sk-use-case-card__title {
		font-size: 20px;
	}
}

/* Section 5: Solutions Overview */
.sk-solutions {
	padding: 80px 0;
	background: linear-gradient(to bottom, #255eb3 0%, #163c75 100%);
}

.sk-solutions__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 58px;
	line-height: 1.1;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.sk-solutions__title span {
	color: rgba(255, 255, 255, 0.3);
}

.sk-solutions__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.sk-solution-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.sk-solution-item:hover {
	opacity: 0.8;
}

.sk-solution-item__icon-box {
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.sk-solution-item__image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.sk-solution-item__text-icon {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 48px;
	line-height: 1.1;
	color: #163c75;
	text-transform: uppercase;
}

.sk-solution-item__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 150px;
}

.sk-solution-item__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.1;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;

	max-width: 320px;
}

.sk-solution-item__desc {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.1;
	color: rgba(255, 255, 255, 0.6);
}

.sk-solutions__footer {
	display: flex;
	justify-content: flex-start;
}

.sk-solutions__btn {
	display: inline-block;
	padding: 18px 40px;
	background: linear-gradient(90deg, #ffffff 0%, #ddeff9 100%);
	border-radius: 10px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	font-size: 24px;
	color: #163c75;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.sk-solutions__btn:hover {
	opacity: 0.9;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-solutions {
		padding: 40px 0;
	}

	.sk-solutions__title {
		font-size: 34px;
		margin-bottom: 40px;
	}

	.sk-solutions__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sk-solution-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.sk-solution-item__icon-box {
		width: 100px;
		height: 100px;
	}

	.sk-solution-item__text-icon {
		font-size: 28px;
	}

	.sk-solution-item__content {
		height: 100px;
		justify-content: center;
		gap: 7px;
	}

	.sk-solution-item__title {
		font-size: 20px;
	}

	.sk-solution-item__desc {
		font-size: 14px;
	}

	.sk-solutions__btn {
		font-size: 14px;
	}
}

/* Section 6: Partners & Clients */
.sk-partners {
	padding: 80px 0;
}

.sk-partners__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	font-size: 58px;
	line-height: 1.1;
	color: #163c75;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.sk-partners__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 22px;
}

.sk-partner-item {
	height: 205px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 10px;
}

.sk-partner-item__logo {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-partners {
		padding: 40px 0;
	}

	.sk-partners__title {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.sk-partners__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 11px;
	}

	.sk-partner-item {
		height: 120px;
		border-radius: 6px;
	}
}

/* Section 7: CTA */
.sk-cta {
	padding-bottom: 80px;
}

.sk-cta__card {
	background-color: #e9e9e9;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	padding: 70px 20px 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 26px;
	position: relative;
	overflow: hidden;

	min-height: 640px;
}

.sk-cta__title {
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.1;
	color: #ffffff;
	text-align: center;
	max-width: 588px;
	margin: 0;
	z-index: 2;
	position: relative;
}

.sk-cta__btn {
	background-color: #ffffff;
	color: #163c75;
	padding: 14px 30px;
	border-radius: 10px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	font-size: 26px;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.3s ease;
	z-index: 2;
	position: relative;
}

.sk-cta__btn:hover {
	opacity: 0.9;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.sk-cta {
		padding-bottom: 40px;
	}

	.sk-cta__title {
		font-size: 24px;
		max-width: 100%;
	}

	.sk-cta__btn {
		font-size: 14px;
	}
}