@import url("https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=PT+Sans:wght@400;700&display=swap");

:root {
	--color-magenta: #f867c6;
	--color-purple: #31099c;
	--color-purple-deep: #160343;
	--color-purple-soft: #6d35d8;
	--color-ink: #171126;
	--color-muted: #655e73;
	--color-line: rgba(49, 9, 156, 0.16);
	--color-surface: #fbf8ff;
	--color-white: #ffffff;
	--glass: rgba(255, 255, 255, 0.72);
	--glass-strong: rgba(255, 255, 255, 0.86);
	--shadow: 0 24px 70px rgba(49, 9, 156, 0.16);
	--glow: 0 18px 54px rgba(248, 103, 198, 0.24), 0 12px 46px rgba(49, 9, 156, 0.18);
	--radius: 8px;
	--content: min(1180px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(135deg, rgba(248, 103, 198, 0.12), transparent 32%),
		linear-gradient(215deg, rgba(49, 9, 156, 0.11), transparent 36%),
		var(--color-surface);
	color: var(--color-ink);
	font-family: "PT Sans", Arial, Helvetica, sans-serif;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
h4,
.hero-title,
.typewriter {
	font-family: "Philosopher", Georgia, "Times New Roman", serif;
}

.skip-link {
	background: var(--color-purple);
	color: var(--color-white);
	left: 16px;
	padding: 10px 14px;
	position: absolute;
	top: -100px;
	z-index: 30;
}

.skip-link:focus {
	top: 16px;
}

.site-header {
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 8px 34px rgba(49, 9, 156, 0.08);
	position: sticky;
	top: 0;
	z-index: 20;
}

.site-header__inner {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: auto 1fr auto;
	margin: 0 auto;
	min-height: 86px;
	width: var(--content);
}

.brand,
.brand__fallback,
.brand--footer {
	align-items: center;
	display: inline-flex;
	gap: 13px;
}

.brand__logo,
.custom-logo {
	height: 58px;
	object-fit: contain;
	width: auto;
}

.brand__text {
	display: grid;
	line-height: 1.2;
}

.brand__text strong {
	color: var(--color-purple);
	font-family: "Philosopher", Georgia, serif;
	font-size: 1.04rem;
}

.brand__text small {
	color: var(--color-muted);
	font-size: 0.76rem;
}

.primary-nav {
	justify-self: end;
}

.primary-nav ul {
	align-items: center;
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	color: var(--color-ink);
	font-size: 0.92rem;
	font-weight: 700;
}

.primary-nav a:hover {
	color: var(--color-magenta);
}

.menu-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-purple);
	cursor: pointer;
	display: none;
	font-weight: 700;
	gap: 7px;
	min-height: 42px;
	padding: 8px 11px;
}

.menu-toggle span {
	background: currentColor;
	display: block;
	height: 2px;
	transition: transform 220ms ease, opacity 220ms ease;
	width: 14px;
}

body.nav-open .menu-toggle span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
	opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.nav-backdrop {
	background: rgba(22, 3, 67, 0.36);
	border: 0;
	display: none;
	inset: 76px 0 0;
	position: fixed;
	z-index: 19;
}

.button,
.header-call,
.quick-action {
	align-items: center;
	background-position: right center;
	background-size: 204% 100%;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 46px;
	overflow: hidden;
	padding: 12px 22px;
	position: relative;
	text-align: center;
	transition: background-position 420ms cubic-bezier(0.4, 0, 0.2, 1), color 220ms ease, transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.button:hover,
.header-call:hover,
.quick-action:hover {
	background-position: left center;
	box-shadow: var(--glow);
	transform: translateY(-3px);
}

.button--primary,
.header-call {
	background-image: linear-gradient(to right, var(--color-magenta) 50%, var(--color-purple) 50%);
	color: var(--color-white);
}

.button--primary:hover,
.header-call:hover {
	color: var(--color-purple-deep);
}

.button--glass {
	background-image: linear-gradient(to right, var(--color-purple) 50%, rgba(255, 255, 255, 0.2) 50%);
	border: 1px solid rgba(255, 255, 255, 0.54);
	color: var(--color-white);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.button--glass:hover {
	border-color: transparent;
	color: var(--color-white);
}

.button--gold,
.button--ghost-dark {
	background-image: linear-gradient(to right, var(--color-purple) 50%, rgba(255, 255, 255, 0.92) 50%);
	border: 1px solid rgba(49, 9, 156, 0.16);
	color: var(--color-purple);
}

.button--gold:hover,
.button--ghost-dark:hover {
	color: var(--color-white);
}

.button--small {
	min-height: 40px;
	padding: 9px 16px;
}

.hero {
	color: var(--color-white);
	min-height: calc(100vh - 86px);
	overflow: hidden;
	position: relative;
}

.hero-showcase {
	background:
		linear-gradient(120deg, rgba(22, 3, 67, 0.96), rgba(49, 9, 156, 0.88) 48%, rgba(248, 103, 198, 0.76)),
		linear-gradient(45deg, var(--color-purple-deep), var(--color-purple));
	display: grid;
	grid-template-columns: 1fr;
}

.hero-showcase::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 76%);
	position: absolute;
}

.hero__shade {
	background:
		linear-gradient(90deg, rgba(15, 2, 47, 0.92), rgba(15, 2, 47, 0.45) 54%, rgba(15, 2, 47, 0.18)),
		linear-gradient(180deg, transparent 72%, rgba(251, 248, 255, 0.18));
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero-showcase__glass {
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero-showcase__glass span {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
	position: absolute;
	transform: skewX(-12deg);
}

.hero-showcase__glass span:nth-child(1) {
	height: 74%;
	right: 8%;
	top: 12%;
	width: min(270px, 30vw);
}

.hero-showcase__glass span:nth-child(2) {
	height: 48%;
	right: 24%;
	top: 28%;
	width: min(190px, 22vw);
}

.hero-showcase__glass span:nth-child(3) {
	height: 36%;
	right: 2%;
	top: 42%;
	width: min(140px, 18vw);
}

.hero-showcase__logo {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
	min-height: 210px;
	padding: 28px;
	position: absolute;
	right: max(30px, calc((100vw - 1180px) / 2));
	top: 50%;
	transform: translateY(-50%);
	width: min(330px, 28vw);
	z-index: 2;
}

.hero-showcase__logo img {
	max-height: 190px;
	object-fit: contain;
}

.hero-media-slider {
	bottom: 78px;
	height: min(58vh, 520px);
	position: absolute;
	right: max(24px, calc((100vw - 1180px) / 2));
	width: min(460px, 34vw);
	z-index: 2;
}

.hero-media-slide {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--radius);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	display: flex;
	inset: 0;
	justify-content: center;
	margin: 0;
	opacity: 0;
	overflow: hidden;
	padding: 20px;
	position: absolute;
	transform: translateX(34px) scale(0.94);
	transition: opacity 760ms ease, transform 760ms ease;
}

.hero-media-slide.is-active {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.hero-media-slide img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero-media-slide img[src$="logo.png"] {
	object-fit: contain;
	padding: 34px;
}

.hero-media-slide figcaption {
	background: rgba(22, 3, 67, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	bottom: 18px;
	color: var(--color-white);
	font-weight: 700;
	left: 18px;
	padding: 9px 12px;
	position: absolute;
	right: 18px;
}

.hero-media-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: calc(100% + 16px);
}

.hero-media-dots button {
	background: rgba(255, 255, 255, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 999px;
	cursor: pointer;
	height: 10px;
	padding: 0;
	transition: background 220ms ease, transform 220ms ease, width 220ms ease;
	width: 10px;
}

.hero-media-dots button.is-active {
	background: var(--color-magenta);
	transform: translateY(-2px);
	width: 32px;
}

.hero__content {
	display: grid;
	justify-items: start;
	margin: 0 auto;
	min-height: calc(100vh - 86px);
	padding: 92px min(420px, 38vw) 112px 0;
	position: relative;
	width: var(--content);
	z-index: 2;
}

.hero__content > * {
	align-self: end;
}

.eyebrow {
	color: var(--color-magenta);
	display: block !important;
	font-family: "PT Sans", Arial, sans-serif;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	letter-spacing: 0 !important;
	line-height: 1.2 !important;
	margin: 0 0 12px !important;
	text-transform: uppercase !important;
}

.hero-title {
	font-size: clamp(3rem, 7vw, 7rem);
	letter-spacing: 0;
	line-height: 0.96;
	margin: 0;
	max-width: 820px;
	text-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.gradient-title span:nth-child(odd) {
	color: var(--color-white);
}

.gradient-title span:nth-child(even) {
	color: var(--color-magenta);
}

.hero__content p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.18rem;
	margin: 20px 0 0;
	max-width: 680px;
}

.hero__actions,
.quote-step__actions,
.core-service-card__actions,
.service-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.core-service-card__actions .button,
.service-card__actions .button {
	flex: 1 1 132px;
}

.hero__meta {
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 28px;
	padding: 15px 18px;
}

.section {
	margin: 0 auto;
	padding: 88px 0;
	width: var(--content);
}

.section__heading {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
		linear-gradient(135deg, rgba(248, 103, 198, 0.22), rgba(49, 9, 156, 0.14));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-bottom: 40px;
	max-width: 880px;
	overflow: hidden;
	padding: 30px 36px 28px;
	position: relative;
}

.section__heading::before {
	background: linear-gradient(90deg, var(--color-magenta), var(--color-purple));
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.section__heading > p:not(.eyebrow),
.section__heading p {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.section .typewriter {
	color: var(--color-purple-deep);
	font-size: clamp(2rem, 4vw, 4rem);
	letter-spacing: 0;
	line-height: 1.08;
	margin: 8px 0 0;
}

.intro,
.two-column-content,
.projects-faq,
.contact-section,
.feature-grid {
	display: grid;
	gap: 42px;
	grid-template-columns: 1fr 1fr;
}

.rich-copy,
.contact-copy p,
.two-column-content p,
.entry__content,
.post-card__excerpt {
	color: var(--color-muted);
	font-size: 1.04rem;
}

.services {
	border-top: 1px solid var(--color-line);
}

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

.core-service-card,
.blog-card,
.gallery-card,
.client-card,
.stat-card,
.feature-card,
.feature-list,
.process-step,
.faq-panel,
.map-card,
.contact-copy,
.post-card,
.entry,
.empty-state,
.why-card,
.service-detail,
.service-card {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
		linear-gradient(145deg, rgba(248, 103, 198, 0.12), rgba(49, 9, 156, 0.1));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius);
	box-shadow: 0 14px 38px rgba(49, 9, 156, 0.08);
}

.core-service-card {
	display: grid;
	overflow: hidden;
	position: relative;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.core-service-card:hover,
.blog-card:hover,
.gallery-card:hover,
.client-card:hover,
.stat-card:hover,
.why-card:hover,
.process-step:hover,
.service-detail:hover,
.service-card:hover {
	box-shadow: var(--glow), var(--shadow);
	transform: translateY(-8px);
}

.core-service-card__image {
	align-items: center;
	aspect-ratio: 1.18;
	background:
		linear-gradient(135deg, rgba(49, 9, 156, 0.08), rgba(248, 103, 198, 0.16)),
		rgba(255, 255, 255, 0.7);
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 22px;
	width: 100%;
}

.core-service-card__image img {
	height: 100%;
	object-fit: contain;
	transition: transform 600ms ease;
	width: 100%;
}

.core-service-card:hover img {
	transform: scale(1.06);
}

.core-service-card__body {
	display: grid;
	padding: 22px;
}

.core-service-card__body span,
.blog-card span {
	color: var(--color-magenta);
	font-size: 0.82rem;
	font-weight: 700;
}

.core-service-card h3,
.blog-card h3,
.process-step h3,
.gallery-card strong,
.client-card h3,
.service-card__title,
.entry__header h1 {
	color: var(--color-purple);
	line-height: 1.18;
	margin: 0;
}

.core-service-card p,
.service-detail__content p,
.service-detail__content li,
.why-card p,
.process-step p,
.seo-keywords p,
.blog-card p,
.gallery-card span,
.client-card p {
	color: var(--color-muted);
}

.service-detail-grid {
	display: grid;
	gap: 28px;
	margin-top: 56px;
}

.service-actions {
	margin-top: 34px;
	text-align: center;
}

.service-detail {
	align-items: stretch;
	display: grid;
	gap: 30px;
	grid-template-columns: 0.85fr 1.15fr;
	overflow: hidden;
	padding: 30px;
	position: relative;
}

.service-detail__image {
	align-items: center;
	background: rgba(255, 255, 255, 0.48);
	border-radius: var(--radius);
	display: flex;
	min-height: 100%;
	overflow: hidden;
	padding: 26px;
}

.service-detail__image img {
	height: 100%;
	object-fit: contain;
	transition: transform 700ms ease;
	width: 100%;
}

.service-detail:hover img {
	transform: scale(1.05);
}

.service-detail__content h3 {
	color: var(--color-purple);
	font-size: clamp(1.55rem, 3vw, 2.65rem);
	line-height: 1.1;
	margin: 0 0 16px;
}

.service-detail__content ul,
.check-list,
.project-list {
	margin: 14px 0 20px;
	padding-left: 20px;
}

.service-modal {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 42;
}

.service-modal.is-open {
	display: block;
}

.service-modal__overlay {
	background: rgba(18, 4, 46, 0.76);
	inset: 0;
	position: absolute;
}

.service-modal__dialog {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
		linear-gradient(145deg, rgba(248, 103, 198, 0.22), rgba(49, 9, 156, 0.12));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	left: 50%;
	max-height: min(86vh, 820px);
	max-width: min(920px, calc(100vw - 28px));
	overflow: auto;
	padding: 30px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.service-modal__content .service-detail__image {
	min-height: 260px;
}

.service-modal__content {
	display: grid;
	gap: 28px;
	grid-template-columns: 0.82fr 1.18fr;
}

.service-modal__close {
	background: var(--color-purple);
	border: 0;
	border-radius: 999px;
	color: var(--color-white);
	cursor: pointer;
	font-size: 1.3rem;
	height: 38px;
	position: sticky;
	float: right;
	right: 0;
	top: 0;
	width: 38px;
	z-index: 2;
}

.glass-band {
	background:
		linear-gradient(135deg, rgba(248, 103, 198, 0.1), rgba(49, 9, 156, 0.08));
	border-radius: var(--radius);
	padding-left: 24px;
	padding-right: 24px;
	width: min(1228px, calc(100vw - 24px));
}

.why-grid,
.stats-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 34px;
}

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

.why-card,
.stat-card,
.process-step {
	min-height: 250px;
	overflow: hidden;
	padding: 28px;
	position: relative;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.stat-card strong {
	color: var(--color-purple);
	display: block;
	font-family: "Philosopher", Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	line-height: 1;
}

.stat-card span {
	color: var(--color-muted);
	display: block;
	margin-top: 14px;
}

.process-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 34px;
}

.process-step span {
	align-items: center;
	background: linear-gradient(135deg, var(--color-magenta), var(--color-purple));
	border-radius: 999px;
	color: var(--color-white);
	display: inline-flex;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	margin-bottom: 28px;
	width: 42px;
}

.faq-panel {
	padding: 30px;
}

.faq-panel details {
	border-bottom: 1px solid var(--color-line);
	padding: 14px 0;
}

.faq-panel summary {
	color: var(--color-purple);
	cursor: pointer;
	font-weight: 700;
}

.carousel-shell {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: auto 1fr auto;
	margin-top: 34px;
	overflow: hidden;
}

.post-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 8px 3px 24px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.loop-track {
	animation: loop-scroll 34s linear infinite;
	overflow: visible;
	width: max-content;
}

.loop-track:hover {
	animation-play-state: paused;
}

@keyframes loop-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.carousel-arrow {
	background: var(--color-purple);
	border: 0;
	border-radius: 999px;
	color: var(--color-white);
	cursor: pointer;
	font-size: 2rem;
	height: 48px;
	line-height: 1;
	width: 48px;
}

.blog-card {
	flex: 0 0 min(350px, 84vw);
	overflow: hidden;
	scroll-snap-align: start;
}

.blog-card img,
.post-card__image img {
	aspect-ratio: 1.35;
	object-fit: contain;
	padding: 20px;
	width: 100%;
}

.blog-card a,
.blog-card--empty {
	display: grid;
	gap: 10px;
	padding: 20px;
}

.gallery-section,
.clients-section,
.stats-section {
	overflow: hidden;
}

.gallery-loop,
.clients-loop {
	display: flex;
	gap: 22px;
	margin-top: 34px;
}

.gallery-card,
.client-card {
	flex: 0 0 min(360px, 82vw);
	margin: 0;
	overflow: hidden;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-card img {
	aspect-ratio: 1.18;
	object-fit: contain;
	padding: 26px;
	width: 100%;
}

.gallery-card figcaption,
.client-card div {
	display: grid;
	gap: 8px;
	padding: 20px;
}

.client-card {
	align-items: center;
	display: flex;
	min-height: 170px;
}

.client-card img {
	aspect-ratio: 1;
	border-radius: var(--radius);
	height: 118px;
	margin-left: 18px;
	object-fit: contain;
	width: 118px;
}

.contact-section {
	align-items: stretch;
}

.hours {
	border-left: 4px solid var(--color-magenta);
	display: grid;
	gap: 5px;
	margin: 22px 0;
	padding-left: 16px;
}

.map-card {
	min-height: 450px;
	overflow: hidden;
	padding: 0;
}

.map-card iframe {
	border: 0;
	height: 100%;
	min-height: 450px;
	width: 100%;
}

.quick-actions {
	display: grid;
	gap: 14px;
	position: fixed;
	right: 18px;
	top: 45%;
	transform: translateY(-50%);
	z-index: 18;
}

.quick-action {
	box-shadow: 0 14px 46px rgba(49, 9, 156, 0.22);
	color: var(--color-white);
	min-width: 140px;
}

.quick-action--quote {
	background-image: linear-gradient(to right, var(--color-purple) 50%, var(--color-magenta) 50%);
	border-radius: 28px 8px 28px 8px;
}

.quick-action--call {
	background-image: linear-gradient(to right, var(--color-magenta) 50%, var(--color-purple) 50%);
	border-radius: 8px 28px 8px 28px;
}

.quick-action--wa {
	background-image: linear-gradient(to right, var(--color-purple-deep) 50%, #25d366 50%);
	border-radius: 999px 8px 999px 8px;
}

.scroll-wheel {
	align-items: center;
	background:
		conic-gradient(from 0deg, var(--color-magenta), var(--color-white), var(--color-purple), var(--color-magenta));
	border-radius: 18px 6px 18px 6px;
	bottom: 24px;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7), 0 0 34px rgba(248, 103, 198, 0.72), 0 16px 44px rgba(49, 9, 156, 0.28);
	display: flex;
	height: 64px;
	justify-content: center;
	left: 24px;
	position: fixed;
	transform: rotate(var(--scroll-progress, 0deg));
	transition: transform 80ms linear;
	width: 64px;
	z-index: 17;
}

.scroll-wheel::before {
	animation: progress-spin 900ms linear infinite;
	border: 2px dashed rgba(255, 255, 255, 0.96);
	border-radius: inherit;
	content: "";
	inset: -8px;
	position: absolute;
}

.scroll-wheel span {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	height: 10px;
	position: relative;
	width: 28px;
}

.scroll-wheel span::after {
	background: var(--color-white);
	border-radius: 999px;
	content: "";
	height: 28px;
	left: 9px;
	opacity: 0.72;
	position: absolute;
	top: -9px;
	width: 10px;
}

@keyframes progress-spin {
	to {
		transform: rotate(360deg);
	}
}

.quote-modal {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 40;
}

.quote-modal.is-open {
	display: block;
}

.quote-modal__overlay {
	background: rgba(18, 4, 46, 0.72);
	inset: 0;
	position: absolute;
}

.quote-modal__dialog {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
		linear-gradient(145deg, rgba(248, 103, 198, 0.2), rgba(49, 9, 156, 0.1));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	left: 50%;
	max-width: min(640px, calc(100vw - 28px));
	padding: 30px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.quote-modal__close {
	background: var(--color-purple);
	border: 0;
	border-radius: 999px;
	color: var(--color-white);
	cursor: pointer;
	font-size: 1.3rem;
	height: 38px;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 38px;
}

.quote-modal h2 {
	color: var(--color-purple);
	font-size: 2rem;
	line-height: 1.1;
	margin: 0 0 18px;
}

.quote-step {
	display: none;
	gap: 14px;
}

.quote-step.is-active {
	display: grid;
}

.quote-step label {
	color: var(--color-ink);
	display: grid;
	font-weight: 700;
	gap: 8px;
}

.quote-step input,
.quote-step textarea,
.quote-step select {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 12px 13px;
	width: 100%;
}

.quote-service-fixed {
	display: none;
}

.quote-progress {
	background: rgba(49, 9, 156, 0.12);
	border-radius: 999px;
	height: 8px;
	margin: 0 0 18px;
	overflow: hidden;
}

.quote-progress span {
	background: linear-gradient(90deg, var(--color-magenta), var(--color-purple));
	display: block;
	height: 100%;
	transition: width 260ms ease;
	width: var(--quote-progress, 33%);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateX(-34px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.section > .reveal-on-scroll:nth-child(even),
.section > div > .reveal-on-scroll:nth-child(even),
.core-service-card:nth-child(even),
.why-card:nth-child(even),
.process-step:nth-child(even),
.stat-card:nth-child(even) {
	transform: translateX(34px);
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.typewriter {
	display: inline-block;
	overflow: hidden;
	white-space: normal;
}

.typewriter span {
	display: inline-block;
	margin-right: 0.22em;
	opacity: 0.4;
	position: relative;
	transform: translateY(8px) skewX(-6deg);
	transition: opacity 220ms ease, transform 220ms ease, color 220ms ease, text-shadow 220ms ease;
}

.typewriter span.word-visible {
	color: var(--color-magenta) !important;
	opacity: 1;
	text-shadow: 0 0 22px rgba(248, 103, 198, 0.42);
	transform: translateY(0) skewX(0deg) scale(1.04);
}

.typewriter span.word-dimmed {
	opacity: 0.72;
	transform: translateY(0) skewX(0deg);
}

.content-area,
.seo-keywords {
	margin: 0 auto;
	width: var(--content);
}

.content-area {
	min-height: 60vh;
	padding: 76px 0;
}

.seo-keywords {
	margin-bottom: 70px;
}

.seo-keywords p {
	background: rgba(49, 9, 156, 0.06);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font-size: 0.9rem;
	padding: 18px;
}

.post-list,
.archive-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card,
.service-card {
	overflow: hidden;
	padding: 0;
}

.post-card__body,
.service-card__body {
	padding: 24px;
}

.service-card__image {
	aspect-ratio: 1.5;
	overflow: hidden;
	padding: 24px;
}

.service-card__image img {
	height: 100%;
	object-fit: contain;
	transition: transform 600ms ease;
	width: 100%;
}

.single-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 340px;
}

.entry {
	padding: 30px;
}

.entry__image img {
	border-radius: var(--radius);
	margin-bottom: 24px;
	width: 100%;
}

.post-sidebar {
	position: sticky;
	top: 110px;
}

.sidebar-cta {
	background: var(--color-purple);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--color-white);
	padding: 28px;
}

.sidebar-cta h2 {
	font-size: 1.7rem;
	line-height: 1.15;
	margin: 0 0 12px;
}

.sidebar-cta p {
	color: rgba(255, 255, 255, 0.82);
}

.site-footer {
	background:
		linear-gradient(135deg, rgba(248, 103, 198, 0.22), transparent 36%),
		linear-gradient(220deg, rgba(248, 103, 198, 0.18), transparent 42%),
		var(--color-purple-deep);
	color: var(--color-white);
	overflow: hidden;
	position: relative;
}

.site-footer__inner {
	display: grid;
	gap: 34px;
	grid-template-columns: 1.25fr 0.8fr 1fr 0.85fr;
	margin: 0 auto;
	padding: 54px 0;
	position: relative;
	width: var(--content);
	z-index: 1;
}

.site-footer .brand__text strong,
.site-footer p,
.site-footer small {
	color: var(--color-white);
}

.footer-contact,
.footer-widgets,
.footer-links,
.footer-brand-block {
	align-content: start;
	display: grid;
	gap: 8px;
}

.footer-brand-block {
	gap: 16px;
}

.footer-contact h2,
.footer-widget__title,
.footer-links h2 {
	color: var(--color-magenta);
	font-size: 1rem;
	margin: 0 0 8px;
}

.footer-contact a,
.footer-links a,
.footer-service-link {
	background: transparent;
	border: 0;
	color: var(--color-white);
	cursor: pointer;
	font-size: 1.02rem;
	font-weight: 700;
	padding: 4px 0;
	position: relative;
	text-align: left;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-service-link:hover {
	color: var(--color-magenta);
	transform: translateX(5px);
}

.brand--footer .brand__logo {
	background: rgba(255, 255, 255, 0.94);
	border-radius: 28px 8px 28px 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	padding: 12px;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	justify-content: space-between;
	margin: 0 auto;
	padding: 18px 0;
	position: relative;
	width: var(--content);
	z-index: 1;
}

.site-footer__bottom a {
	color: var(--color-magenta);
	font-weight: 700;
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 1120px) {
	.service-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-grid,
	.stats-grid,
	.process-grid,
	.post-list,
	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 76px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.header-call {
		display: none;
	}

	.primary-nav {
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
			linear-gradient(145deg, rgba(248, 103, 198, 0.18), rgba(49, 9, 156, 0.12));
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.82);
		border-radius: 0 0 28px 8px;
		box-shadow: 0 28px 80px rgba(49, 9, 156, 0.2);
		display: none;
		grid-column: 1 / -1;
		justify-self: stretch;
		margin-bottom: 16px;
		padding: 16px;
		position: relative;
		z-index: 21;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		align-items: stretch;
		display: grid;
		gap: 10px;
	}

	.primary-nav a {
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(49, 9, 156, 0.1);
		border-radius: var(--radius);
		display: block;
		padding: 12px 14px;
	}

	body.nav-open .nav-backdrop {
		display: block;
	}

	.hero__content {
		min-height: 760px;
		padding: 70px 0 250px;
	}

	.hero-media-slider {
		bottom: 34px;
		height: 210px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		width: min(360px, calc(100vw - 40px));
	}

	.hero-showcase__glass span:nth-child(1) {
		right: 8%;
		width: 190px;
	}

	.hero-showcase__glass span:nth-child(2),
	.hero-showcase__glass span:nth-child(3) {
		display: none;
	}

	.intro,
	.two-column-content,
	.projects-faq,
	.contact-section,
	.feature-grid,
	.service-modal__content,
	.service-detail,
	.single-layout,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.reveal-on-scroll,
	.section > .reveal-on-scroll:nth-child(even),
	.section > div > .reveal-on-scroll:nth-child(even),
	.core-service-card:nth-child(even),
	.why-card:nth-child(even),
	.process-step:nth-child(even),
	.stat-card:nth-child(even) {
		transform: translateY(24px);
	}

	.carousel-shell {
		grid-template-columns: 1fr;
	}

	.carousel-arrow {
		display: none;
	}

	.post-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	:root {
		--content: min(100vw - 28px, 1180px);
	}

	.brand__logo {
		height: 48px;
	}

	.brand__text {
		display: none;
	}

	.hero-title {
		font-size: 3.2rem;
	}

	.hero__content {
		min-height: 820px;
		padding-top: 56px;
	}

	.section {
		padding: 64px 0;
	}

	.section__heading {
		padding: 26px 22px 24px;
	}

	.service-card-grid,
	.post-list,
	.archive-grid,
	.why-grid,
	.stats-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.quick-actions {
		background: rgba(22, 3, 67, 0.94);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-top: 1px solid rgba(248, 103, 198, 0.42);
		bottom: 0;
		box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.28);
		display: flex;
		gap: 0;
		left: 0;
		padding: env(safe-area-inset-bottom, 0px) 0 0;
		right: 0;
		top: auto;
		transform: none;
		width: 100vw;
	}

	.quick-actions .quick-action {
		border-radius: 0;
		flex: 1 1 0;
		font-size: 0.74rem;
		min-height: 60px;
		min-width: 0;
		padding: 10px 4px;
	}

	body {
		padding-bottom: 60px;
	}

	.scroll-wheel {
		bottom: 70px;
		height: 48px;
		left: 12px;
		width: 48px;
	}

	.service-modal__dialog,
	.quote-modal__dialog {
		max-height: calc(100vh - 96px);
		padding: 22px;
	}
}
