:root {
	--pd-page-accent: #2563eb;
	--pd-page-accent-dark: #075a9d;
	--pd-page-ink: #10243e;
	--pd-page-muted: #61758a;
	--pd-page-border: #dce8f2;
	--pd-page-surface: #ffffff;
	--pd-page-soft: #f4f9fd;
}

.pd-section-shell {
	width: min(calc(100% - 2rem), 80rem);
	margin-inline: auto;
}

.pd-section-heading {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pd-section-heading--center {
	max-width: 44rem;
	margin-inline: auto;
	text-align: center;
}

.pd-section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
}

.pd-section-heading__eyebrow,
.pd-promotion-card__eyebrow,
.pd-newsletter-cta__eyebrow {
	display: inline-block;
	margin-bottom: 0.65rem;
	color: var(--pd-page-accent-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pd-section-heading__title {
	margin: 0;
	color: var(--pd-page-accent);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.pd-section-heading__description {
	max-width: 42rem;
	margin: 0.85rem 0 0;
	color: var(--pd-page-muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.pd-section-heading__link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.6rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(11, 116, 201, 0.3);
	color: var(--pd-page-accent);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 180ms ease, color 180ms ease;
}

.pd-section-heading__link i {
	transition: transform 180ms ease;
}

.pd-section-heading__link:hover,
.pd-section-heading__link:focus-visible {
	border-color: var(--pd-page-accent);
	color: var(--pd-page-accent);
}

.pd-section-heading__link:hover i,
.pd-section-heading__link:focus-visible i {
	transform: translateX(0.25rem);
}

.pd-services {
	padding: clamp(4rem, 7vw, 6rem) 0;
	background: #fff;
}

.pd-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.pd-service-card {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 1rem;
	min-height: 100%;
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid var(--pd-page-border);
	border-radius: 1.25rem;
	background: linear-gradient(145deg, #fff, #f8fbfe);
	box-shadow: 0 12px 34px rgba(16, 36, 62, 0.06);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pd-service-card:hover {
	border-color: rgba(11, 116, 201, 0.32);
	box-shadow: 0 20px 44px rgba(16, 36, 62, 0.11);
	transform: translateY(-0.35rem);
}

.pd-service-card__icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.9rem;
	background: linear-gradient(135deg, #e4f3ff, #f0f8ff);
	color: var(--pd-page-accent);
	font-size: 1.2rem;
	box-shadow: inset 0 0 0 1px rgba(11, 116, 201, 0.08);
}

.pd-service-card__title {
	margin: 0 0 0.5rem;
	color: var(--pd-page-ink);
	font-size: 1.15rem;
	font-weight: 700;
}

.pd-service-card__description {
	margin: 0;
	color: var(--pd-page-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.pd-categories {
	overflow: hidden;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background:
		radial-gradient(circle at 8% 15%, rgba(56, 189, 248, 0.1), transparent 23rem),
		linear-gradient(180deg, #f4f9fd 0%, #eef7ff 100%);
}

.pd-category-carousel {
	position: relative;
}

.pd-category-carousel .category-swiper {
	overflow: visible;
	padding: 0.35rem 0.2rem 1.5rem;
}

.pd-category-slide {
	height: auto;
}

.pd-category-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(137, 174, 205, 0.3);
	border-radius: 1.35rem;
	background: var(--pd-page-surface);
	box-shadow: 0 12px 36px rgba(16, 36, 62, 0.08);
	color: inherit;
	text-decoration: none;
	transform: translateZ(0);
	transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.pd-category-card:hover,
.pd-category-card:focus-visible {
	border-color: rgba(11, 116, 201, 0.42);
	box-shadow: 0 24px 52px rgba(16, 36, 62, 0.16);
	transform: translateY(-0.45rem);
}

.pd-category-card:focus-visible {
	outline: 3px solid rgba(11, 116, 201, 0.28);
	outline-offset: 3px;
}

.pd-category-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #dff1ff, #edf8ff 55%, #d5ebfa);
}

.pd-category-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pd-category-card:hover .pd-category-card__image,
.pd-category-card:focus-visible .pd-category-card__image {
	transform: scale(1.075);
}

.pd-category-card__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(11, 116, 201, 0.7);
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.pd-category-card__placeholder::before,
.pd-category-card__placeholder::after {
	position: absolute;
	width: 8rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	content: "";
}

.pd-category-card__placeholder::before {
	top: -3rem;
	right: -2rem;
}

.pd-category-card__placeholder::after {
	bottom: -4rem;
	left: -2rem;
}

.pd-category-card__placeholder i {
	position: relative;
	z-index: 1;
}

.pd-category-card__veil {
	position: absolute;
	inset: auto 0 0;
	height: 45%;
	background: linear-gradient(to top, rgba(16, 36, 62, 0.2), transparent);
	opacity: 0.5;
}

.pd-category-card__content {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem;
}

.pd-category-card__title {
	margin: 0;
	color: var(--pd-page-ink);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	transition: color 180ms ease;
}

.pd-category-card:hover .pd-category-card__title,
.pd-category-card:focus-visible .pd-category-card__title {
	color: var(--pd-page-accent);
}

.pd-category-card__count {
	margin: 0.35rem 0 0;
	color: var(--pd-page-muted);
	font-size: 0.82rem;
}

.pd-category-card__arrow {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: #eef7ff;
	color: var(--pd-page-accent-dark);
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pd-category-card:hover .pd-category-card__arrow,
.pd-category-card:focus-visible .pd-category-card__arrow {
	background: var(--pd-page-accent);
	color: #fff;
	transform: translateX(0.2rem);
}

.pd-category-carousel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 1rem;
}

.pd-category-pagination {
	position: static !important;
	display: flex;
	align-items: center;
	width: auto !important;
}

.pd-category-pagination .swiper-pagination-bullet {
	width: 0.5rem;
	height: 0.5rem;
	margin: 0 0.25rem !important;
	border-radius: 999px;
	background: #7194b2;
	opacity: 0.38;
	transition: width 260ms ease, background 260ms ease, opacity 260ms ease;
}

.pd-category-pagination .swiper-pagination-bullet-active {
	width: 2.25rem;
	background: var(--pd-page-accent);
	opacity: 1;
}

.pd-category-navigation {
	display: flex;
	gap: 0.65rem;
}

.pd-category-nav {
	display: grid;
	place-items: center;
	width: 2.85rem;
	height: 2.85rem;
	border: 1px solid rgba(11, 116, 201, 0.18);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 8px 22px rgba(16, 36, 62, 0.08);
	color: var(--pd-page-accent-dark);
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pd-category-nav:hover,
.pd-category-nav:focus-visible {
	background: var(--pd-page-accent);
	color: #fff;
	transform: translateY(-0.15rem);
}

.pd-category-nav:focus-visible {
	outline: 3px solid rgba(11, 116, 201, 0.28);
	outline-offset: 3px;
}

.pd-category-nav.swiper-button-disabled {
	cursor: not-allowed;
	opacity: 0.38;
	transform: none;
}

.pd-product-section {
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background: #fff;
}

.pd-product-section--featured,
.pd-product-section--viewed {
	background: #fff;
}

.pd-product-section--latest {
	background: var(--pd-page-soft);
}

.pd-product-section .pd-product-grid {
	align-items: stretch;
}

.pd-product-section .pd-product-card__media img {
	aspect-ratio: 1 / 0.86;
	object-fit: cover;
}

.pd-section-empty {
	margin: 0;
	padding: 2rem;
	border: 1px solid var(--pd-page-border);
	border-radius: 1rem;
	background: #fff;
	color: var(--pd-page-muted);
	text-align: center;
}

.pd-promotions {
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background: #fff;
}

.pd-promotions__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.pd-promotion-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid var(--pd-page-border);
	border-radius: 1.4rem;
	background: #fff;
	box-shadow: 0 14px 38px rgba(16, 36, 62, 0.08);
}

.pd-promotion-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 11;
}

.pd-promotion-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pd-promotion-card:hover .pd-promotion-card__media img {
	transform: scale(1.055);
}

.pd-promotion-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.4rem, 3vw, 2rem);
}

.pd-promotion-card__content h2 {
	margin: 0;
	color: var(--pd-page-accent);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
}

.pd-promotion-card__content p {
	margin: 0.9rem 0 1.4rem;
	color: var(--pd-page-muted);
	font-size: 0.94rem;
	line-height: 1.7;
}

.pd-promotion-card__content a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: auto;
	color: var(--pd-page-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.pd-promotion-card__content a i {
	transition: transform 180ms ease;
}

.pd-promotion-card__content a:hover i,
.pd-promotion-card__content a:focus-visible i {
	transform: translateX(0.25rem);
}

.pd-promotion-card--spotlight {
	position: relative;
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.22), transparent 14rem),
		linear-gradient(145deg, #0b74c9, #064c87);
}

.pd-promotion-card--spotlight .pd-promotion-card__content {
	justify-content: center;
	min-height: 100%;
	padding-block: clamp(3rem, 6vw, 5rem);
}

.pd-promotion-card--spotlight .pd-promotion-card__eyebrow,
.pd-promotion-card--spotlight h2,
.pd-promotion-card--spotlight p,
.pd-promotion-card--spotlight a {
	color: #fff;
}

.pd-promotion-card--spotlight a {
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.pd-offer-banner {
	padding: 0 0 clamp(4.5rem, 8vw, 7rem);
	background: var(--pd-page-soft);
}

.pd-offer-banner__panel {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: clamp(30rem, 52vw, 40rem);
	border-radius: clamp(1.5rem, 3vw, 2.5rem);
	background: #075a9d;
	box-shadow: 0 28px 70px rgba(16, 36, 62, 0.2);
	isolation: isolate;
}

.pd-offer-banner__image,
.pd-newsletter-cta__image {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd-offer-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(5, 48, 85, 0.96) 0%, rgba(7, 90, 157, 0.78) 48%, rgba(7, 90, 157, 0.08) 100%);
}

.pd-offer-banner__content {
	width: min(100%, 42rem);
	padding: clamp(2rem, 7vw, 5rem);
	color: #fff;
}

.pd-offer-banner__badge {
	display: inline-flex;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.pd-offer-banner__content h2 {
	margin: 1.2rem 0 0;
	font-size: clamp(2.7rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.045em;
}

.pd-offer-banner__content p {
	margin: 1.2rem 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.1rem;
}

.pd-offer-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.pd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pd-button:hover,
.pd-button:focus-visible {
	transform: translateY(-0.15rem);
}

.pd-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.42);
	outline-offset: 3px;
}

.pd-button--light {
	background: #fff;
	color: var(--pd-page-accent-dark);
}

.pd-button--light:hover,
.pd-button--light:focus-visible {
	background: #eaf5ff;
	color: var(--pd-page-accent-dark);
}

.pd-button--outline {
	border-color: rgba(255, 255, 255, 0.74);
	color: #fff;
}

.pd-button--outline:hover,
.pd-button--outline:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--pd-page-accent-dark);
}

.pd-newsletter-cta {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	min-height: clamp(28rem, 48vw, 38rem);
	padding: 4rem 1rem;
	background: #064c87;
	color: #fff;
	text-align: center;
	isolation: isolate;
}

.pd-newsletter-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.28), transparent 24rem),
		linear-gradient(135deg, rgba(5, 48, 85, 0.94), rgba(7, 90, 157, 0.84));
}

.pd-newsletter-cta__content {
	max-width: 48rem;
}

.pd-newsletter-cta__eyebrow {
	color: #bfe6ff;
}

.pd-newsletter-cta h2 {
	margin: 0;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.pd-newsletter-cta p {
	margin: 1.25rem auto 2rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.8vw, 1.18rem);
	line-height: 1.75;
}

@media (max-width: 900px) {
	.pd-services__grid,
	.pd-promotions__grid {
		grid-template-columns: 1fr;
	}

	.pd-service-card {
		min-height: auto;
	}

	.pd-promotion-card {
		display: grid;
		grid-template-columns: minmax(15rem, 0.85fr) 1fr;
	}

	.pd-promotion-card--spotlight {
		display: block;
	}

	.pd-promotion-card__media {
		aspect-ratio: auto;
		min-height: 20rem;
	}
}

@media (max-width: 640px) {
	.pd-section-shell {
		width: min(calc(100% - 1.5rem), 80rem);
	}

	.pd-section-heading--split {
		align-items: flex-start;
		flex-direction: column;
		gap: 1rem;
	}

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

	.pd-promotion-card {
		display: flex;
	}

	.pd-promotion-card__media {
		aspect-ratio: 16 / 11;
		min-height: auto;
	}

	.pd-category-carousel__footer {
		margin-top: 0.35rem;
	}

	.pd-offer-banner__panel {
		align-items: end;
		min-height: 34rem;
	}

	.pd-offer-banner__overlay {
		background: linear-gradient(0deg, rgba(5, 48, 85, 0.98), rgba(7, 90, 157, 0.42));
	}

	.pd-offer-banner__content {
		padding: 2rem 1.4rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pd-service-card,
	.pd-category-card,
	.pd-category-card *,
	.pd-category-nav,
	.pd-promotion-card__media img,
	.pd-button {
		transition-duration: 0.01ms !important;
	}

	.pd-service-card:hover,
	.pd-category-card:hover,
	.pd-category-card:focus-visible,
	.pd-category-card:hover .pd-category-card__image,
	.pd-category-card:focus-visible .pd-category-card__image,
	.pd-category-card:hover .pd-category-card__arrow,
	.pd-category-card:focus-visible .pd-category-card__arrow,
	.pd-button:hover,
	.pd-button:focus-visible {
		transform: none;
	}
}
