/************************************/
/* Pricing                          */
/************************************/

.spark-pricing {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pricing-card {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
	border-color: rgba(107, 253, 217, 0.3);
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: rgba(107, 253, 217, 0.45);
	background: linear-gradient(160deg, rgba(107, 253, 217, 0.08) 0%, var(--secondary-color) 55%);
	position: relative;
}

.pricing-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 6px 12px;
	border-radius: 20px;
	background: var(--gradient-accent);
	color: var(--black-color);
	margin-bottom: 16px;
	width: fit-content;
}

.pricing-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
}

.pricing-card .price {
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	margin: 20px 0 6px;
}

.pricing-card .price span {
	font-size: 16px;
	font-weight: 500;
	opacity: 0.6;
}

.pricing-card .price-desc {
	font-size: 14px;
	opacity: 0.75;
	margin-bottom: 24px;
}

.pricing-features {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	flex: 1;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid var(--divider-color);
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li i {
	color: var(--accent-secondary-color);
	margin-top: 2px;
	flex-shrink: 0;
}

.pricing-card .btn-default {
	width: 100%;
	text-align: center;
}

.pricing-card .btn-outline {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px 24px;
	border-radius: 30px;
	border: 1px solid var(--divider-color);
	color: var(--primary-color);
	font-weight: 600;
	transition: all 0.3s ease;
}

.pricing-card .btn-outline:hover {
	border-color: var(--accent-secondary-color);
	color: var(--accent-secondary-color);
}

/************************************/
/* FAQ                              */
/************************************/

.spark-faq {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.faq-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	overflow: hidden;
	background: var(--secondary-color);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: none;
	border: none;
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease;
}

.faq-question i {
	color: var(--accent-secondary-color);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer-inner {
	padding: 0 24px 20px;
	font-size: 14px;
	line-height: 1.65em;
	opacity: 0.85;
}

.faq-item.active .faq-answer {
	max-height: 320px;
}

/************************************/
/* Blog                             */
/************************************/

.spark-blog {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.blog-card {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
	background: var(--secondary-color);
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
	border-color: rgba(107, 253, 217, 0.3);
	transform: translateY(-4px);
}

.blog-card-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(107, 253, 217, 0.15), rgba(240, 255, 108, 0.1));
}

.blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
	background: var(--gradient-accent);
	color: var(--black-color);
}

.blog-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-meta {
	font-size: 12px;
	opacity: 0.6;
	margin-bottom: 10px;
}

.blog-card-body h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.blog-card-body h3 a {
	color: inherit;
	transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
	color: var(--accent-secondary-color);
}

.blog-card-body p {
	font-size: 14px;
	line-height: 1.55em;
	opacity: 0.8;
	margin: 0 0 16px;
	flex: 1;
}

.blog-read-more {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-secondary-color);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/************************************/
/* Contact                          */
/************************************/

.spark-contact {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: start;
}

.contact-info-list {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-info-item .icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black-color);
	flex-shrink: 0;
}

.contact-info-item h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
	opacity: 0.7;
}

.contact-info-item p,
.contact-info-item a {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: inherit;
	line-height: 1.5;
}

.contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.contact-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.contact-social a:hover {
	background: var(--gradient-accent);
	color: var(--black-color);
	border-color: transparent;
}

.contact-map {
	margin-top: var(--section-space);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
}

.contact-form-box {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 36px;
	backdrop-filter: blur(12px);
}

.contact-form-box > p {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 24px;
}

.spark-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.spark-form input,
.spark-form textarea,
.spark-form select {
	width: 100%;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 14px 18px;
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.spark-form input::placeholder,
.spark-form textarea::placeholder {
	color: rgba(248, 248, 248, 0.4);
}

.spark-form input:focus,
.spark-form textarea:focus,
.spark-form select:focus {
	outline: none;
	border-color: var(--accent-secondary-color);
}

.spark-form select {
	margin-bottom: 16px;
}

.spark-form select option {
	background: var(--black-color);
	color: var(--primary-color);
}

.spark-form textarea {
	min-height: 120px;
	resize: vertical;
	margin-bottom: 16px;
}

.spark-form .btn-default {
	width: 100%;
	border: none;
	cursor: pointer;
}

/************************************/
/* Footer                           */
/************************************/

.spark-footer {
	padding: 0 0 40px;
	position: relative;
	z-index: 1;
}

.footer-panel {
	border: 1px solid var(--divider-color);
	border-radius: 28px;
	padding: 50px 48px 40px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.footer-logo>img {
	width: 80%;
	margin-top: -30px;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.footer-brand h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom: 20px;
	max-width: 280px;
}

.footer-brand-line {
	width: 60px;
	height: 2px;
	background: var(--gradient-accent);
	margin-bottom: 24px;
}

.footer-contact-mini {
	margin-bottom: 20px;
}

.footer-contact-mini p {
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.8;
	margin: 0 0 10px;
}

.footer-contact-mini p:last-child {
	margin-bottom: 0;
}

.footer-contact-mini a {
	color: inherit;
	transition: color 0.3s ease;
}

.footer-contact-mini a:hover {
	color: var(--accent-secondary-color);
}

.footer-col-contact .footer-social {
	margin-top: 4px;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--gradient-accent);
	color: var(--black-color);
	border-color: transparent;
}

.footer-col h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.footer-col ul li {
	margin-bottom: 12px;
}

.footer-col ul li a {
	font-size: 14px;
	opacity: 0.8;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-col ul li a::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 9px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid var(--divider-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer-col ul li a:hover {
	opacity: 1;
	color: var(--accent-secondary-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 28px;
	font-size: 13px;
	opacity: 0.55;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 24px;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 20px;
}

.footer-legal a {
	opacity: 1;
	transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-legal a:hover {
	opacity: 1;
	color: var(--accent-secondary-color);
}

/************************************/
/* Legal pages                      */
/************************************/

.spark-legal {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.legal-panel {
	border: 1px solid var(--divider-color);
	border-radius: 28px;
	padding: 48px 44px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.legal-updated {
	font-size: 13px;
	opacity: 0.55;
	margin-bottom: 28px;
}

.legal-block {
	margin-bottom: 32px;
}

.legal-block:last-child {
	margin-bottom: 0;
}

.legal-block h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.legal-block p,
.legal-block li {
	font-size: 15px;
	line-height: 1.75;
	opacity: 0.85;
}

.legal-block p {
	margin-bottom: 12px;
}

.legal-block ul {
	margin: 0 0 12px;
	padding-left: 20px;
}

.legal-block li {
	margin-bottom: 8px;
}

.legal-block a {
	color: var(--accent-secondary-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 8px;
}

.legal-pref-status {
	font-size: 14px;
	margin-top: 8px;
	color: var(--accent-secondary-color);
	opacity: 1;
}

.btn-outline-soft {
	display: inline-block;
	padding: 14px 26px;
	border-radius: 30px;
	border: 1px solid var(--divider-color);
	background: transparent;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1em;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-outline-soft:hover {
	border-color: var(--accent-secondary-color);
	color: var(--accent-secondary-color);
}

/* Privacy — highlight strip + TOC layout */
.privacy-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 36px;
}

.privacy-highlight-card {
	padding: 24px 22px;
	border-radius: 18px;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
}

.privacy-highlight-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	color: var(--black-color);
	margin-bottom: 14px;
}

.privacy-highlight-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.privacy-highlight-card p {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.8;
	margin: 0;
}

.privacy-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 28px;
	align-items: start;
}

.privacy-toc {
	position: sticky;
	top: 110px;
	padding: 22px 20px;
	border-radius: 18px;
	border: 1px solid var(--divider-color);
	background: rgba(255, 255, 255, 0.03);
}

.privacy-toc-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.55;
	margin-bottom: 12px;
}

.privacy-toc ol {
	margin: 0;
	padding-left: 18px;
}

.privacy-toc li {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.4;
}

.privacy-toc a {
	color: var(--primary-color);
	opacity: 0.8;
	text-decoration: none;
}

.privacy-toc a:hover {
	color: var(--accent-secondary-color);
	opacity: 1;
}

.privacy-contact-list,
.cookie-contact-list {
	list-style: none;
	padding-left: 0;
}

.privacy-contact-list li,
.cookie-contact-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
}

.privacy-contact-list i,
.cookie-contact-list i {
	color: var(--accent-secondary-color);
	margin-top: 4px;
	width: 16px;
}

.privacy-contact-card {
	padding-top: 8px;
	border-top: 1px solid var(--divider-color);
}

/* Cookie policy — card / numbered section layout */
.cookie-intro-panel {
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 36px 34px;
	margin-bottom: 28px;
	background: linear-gradient(135deg, rgba(107, 253, 217, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%);
}

.cookie-intro-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.cookie-intro-grid h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.cookie-intro-grid p {
	font-size: 15px;
	line-height: 1.75;
	opacity: 0.85;
	margin: 0;
}

.cookie-intro-note {
	padding: 22px;
	border-radius: 16px;
	border-left: 3px solid var(--accent-secondary-color);
	background: var(--secondary-color);
}

.cookie-intro-note strong {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cookie-intro-note p {
	font-size: 14px;
	line-height: 1.65;
	opacity: 0.85;
	margin: 0;
}

.cookie-type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 28px;
}

.cookie-type-card {
	padding: 26px 22px;
	border-radius: 18px;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	min-height: 100%;
}

.cookie-type-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.cookie-type-badge.essential {
	background: rgba(107, 253, 217, 0.18);
	color: var(--accent-secondary-color);
}

.cookie-type-badge.preference {
	background: rgba(99, 140, 255, 0.18);
	color: #8fb0ff;
}

.cookie-type-badge.analytics {
	background: rgba(255, 176, 94, 0.18);
	color: #ffb05e;
}

.cookie-type-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cookie-type-card p {
	font-size: 14px;
	line-height: 1.65;
	opacity: 0.8;
	margin: 0;
}

.cookie-sections {
	display: grid;
	gap: 18px;
}

.cookie-section-card {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	padding: 28px 26px;
	border-radius: 20px;
	border: 1px solid var(--divider-color);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.cookie-section-num {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: var(--accent-secondary-color);
	opacity: 0.85;
}

.cookie-section-card h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cookie-section-card p,
.cookie-section-card li {
	font-size: 15px;
	line-height: 1.75;
	opacity: 0.85;
}

.cookie-section-card ul {
	margin: 0 0 12px;
	padding-left: 20px;
}

.cookie-section-card a {
	color: var(--accent-secondary-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 991px) {
	.privacy-highlights,
	.cookie-type-grid,
	.cookie-intro-grid {
		grid-template-columns: 1fr;
	}

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

	.privacy-toc {
		position: static;
	}

	.cookie-section-card {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

/************************************/
/* Cookie consent                   */
/************************************/

.cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1080;
	max-width: 720px;
	margin: 0 auto;
}

.cookie-consent[hidden] {
	display: none !important;
}

.cookie-consent-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 24px;
	border-radius: 20px;
	border: 1px solid var(--divider-color);
	background: var(--nav-shell-bg);
	backdrop-filter: blur(16px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.cookie-consent-copy h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
}

.cookie-consent-copy p {
	font-size: 13px;
	line-height: 1.55;
	opacity: 0.8;
	margin: 0;
}

.cookie-consent-copy a {
	color: var(--accent-secondary-color);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-consent-actions {
	display: flex;
	flex-shrink: 0;
	gap: 10px;
}

.cookie-consent-actions .btn-default,
.cookie-consent-actions .btn-outline-soft {
	padding: 12px 22px;
	font-size: 14px;
}

@media only screen and (max-width: 767px) {
	.cookie-consent {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		padding: 18px;
	}

	.cookie-consent-actions {
		width: 100%;
	}

	.cookie-consent-actions .btn-default,
	.cookie-consent-actions .btn-outline-soft {
		flex: 1;
		text-align: center;
	}

	.legal-panel {
		padding: 32px 22px;
		border-radius: 20px;
	}
}

/************************************/
/* About                            */
/************************************/

.spark-about {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-visual {
	position: relative;
}

.about-image-wrap {
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
}

.about-image-wrap img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.about-badge {
	position: absolute;
	bottom: 24px;
	right: -12px;
	background: var(--primary-color);
	color: var(--black-color);
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.about-badge h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
}

.about-badge p {
	font-size: 13px;
	font-weight: 600;
	margin: 0;
	text-transform: capitalize;
}

.about-highlights {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 28px 0 32px;
}

.about-highlight-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
}

.about-highlight-item i {
	font-size: 22px;
	color: var(--accent-secondary-color);
	width: 28px;
}

.about-highlight-item strong {
	display: block;
	font-size: 15px;
	margin-bottom: 2px;
}

.about-highlight-item span {
	font-size: 13px;
	opacity: 0.7;
}

/************************************/
/* Process / How It Works           */
/************************************/

.spark-process {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
}

.process-step {
	position: relative;
	padding: 32px 24px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	transition: border-color 0.3s ease, transform 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.process-step:hover {
	border-color: rgba(107, 253, 217, 0.3);
	transform: translateY(-4px);
}

.step-num {
	font-size: 42px;
	font-weight: 800;
	opacity: 0.08;
	line-height: 1;
	margin-bottom: 8px;
}

.step-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black-color);
	font-size: 20px;
	margin-bottom: 20px;
}

.process-step h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.process-step p {
	font-size: 14px;
	line-height: 1.55em;
	opacity: 0.8;
	margin: 0;
	flex: 1;
}

/************************************/
/* Testimonials                     */
/************************************/

.spark-testimonials {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testimonial-card {
	padding: 32px 28px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.testimonial-stars {
	color: var(--accent-color);
	font-size: 14px;
	margin-bottom: 16px;
	display: flex;
	gap: 4px;
}

.testimonial-card > p {
	font-size: 15px;
	line-height: 1.65em;
	opacity: 0.9;
	flex: 1;
	margin: 0 0 24px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient-accent);
	color: var(--black-color);
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 15px;
}

.testimonial-author span {
	font-size: 13px;
	opacity: 0.65;
}

/************************************/
/* CTA Banner                       */
/************************************/

.spark-cta-banner {
	padding: var(--section-space) 0;
	position: relative;
	z-index: 1;
}

.cta-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 48px 56px;
	border-radius: 24px;
	background: var(--gradient-accent);
	color: var(--black-color);
}

.cta-banner-inner h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.25;
}

.cta-banner-inner p {
	margin: 0;
	font-size: 15px;
	opacity: 0.85;
}

.cta-banner-inner .btn-default {
	background: var(--black-color);
	color: var(--primary-color);
	flex-shrink: 0;
}

.cta-banner-inner .btn-default:hover {
	opacity: 0.9;
}

@media only screen and (max-width: 991px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.faq-layout,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.about-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-badge {
		right: 12px;
		bottom: 16px;
	}

	.process-steps {
		grid-template-columns: 1fr 1fr;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.cta-banner-inner {
		flex-direction: column;
		text-align: center;
		padding: 36px 28px;
	}
}

@media only screen and (max-width: 767px) {
	.spark-form .form-row {
		grid-template-columns: 1fr;
	}

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

	.footer-panel {
		padding: 32px 24px 28px;
		border-radius: 20px;
	}

	.contact-form-box {
		padding: 24px 20px;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.cta-banner-inner h2 {
		font-size: 22px;
	}

	.about-highlights {
		margin: 20px 0 24px;
		gap: 12px;
	}

	.about-layout {
		gap: 28px;
	}

	.team-showcase-row,
	.team-showcase-row.is-reversed {
		gap: 20px;
	}

	.page-hero {
		padding: 96px 0 var(--section-space-tight);
	}

	.contact-map iframe {
		height: 280px;
	}
}

/************************************/
/* Inner pages                      */
/************************************/

.page-hero {
	padding: 140px 0 var(--section-space-tight);
	position: relative;
	z-index: 1;
}

.page-hero-has-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero-has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
	z-index: 0;
}

.page-hero-has-image .container {
	position: relative;
	z-index: 1;
}

.rich-content {
	margin-top: 24px;
	line-height: 1.7;
}

.rich-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.product-item-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.product-item-link:hover {
	color: inherit;
}

.service-detail-image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
}

.page-hero .section-title h1 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 0;
}

.page-hero-desc {
	margin-top: 16px;
	max-width: 640px;
	opacity: 0.85;
	line-height: 1.65;
}

.breadcrumb-nav {
	margin-bottom: 20px;
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: 0.75;
}

.breadcrumb-item:not(:last-child)::after {
	content: '/';
	opacity: 0.5;
}

.breadcrumb-item a {
	color: var(--primary-color);
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: var(--accent-secondary-color);
}

.breadcrumb-item.active {
	opacity: 1;
	color: var(--accent-secondary-color);
}

.tool-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.tool-item-link:hover .tool-item {
	border-color: rgba(107, 253, 217, 0.35);
	transform: translateY(-3px);
}

.services-index-page,
.service-related {
	padding-bottom: var(--section-space);
}

.service-detail-overview {
	padding: var(--section-space-tight) 0 calc(var(--section-space-tight) * 0.7);
	position: relative;
	z-index: 1;
}

.service-detail-layout {
	display: grid;
	/* grid-template-columns: 1.2fr 1fr; */
	gap: 48px;
	align-items: start;
}

.service-detail-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
	color: var(--black-color);
	font-size: 28px;
	margin-bottom: 24px;
}

.service-detail-main p {
	font-size: 16px;
	line-height: 1.7;
	opacity: 0.88;
	margin-bottom: 28px;
}

.service-detail-features {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 32px 28px;
}

.service-detail-features h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.service-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.55;
}

.service-feature-list li i {
	color: var(--accent-secondary-color);
	margin-top: 3px;
	flex-shrink: 0;
}

.service-detail-process {
	padding-top: 0;
}

.service-detail-process .process-steps {
	grid-template-columns: repeat(3, 1fr);
}

.service-related {
	padding: 0 0 var(--section-space);
}

.service-related .section-title {
	margin-bottom: var(--section-header-gap);
}

.portfolio-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.portfolio-card-placeholder,
.blog-card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(107, 253, 217, 0.12), rgba(107, 253, 217, 0.04));
	min-height: 220px;
	position: relative;
	color: var(--accent-secondary-color);
	font-size: 42px;
}

.blog-card-placeholder {
	min-height: 200px;
}

.portfolio-page {
	padding-top: 0;
	padding-bottom: var(--section-space);
}

.blog-page {
	padding-top: 0;
}

.blog-detail-page {
	padding: calc(var(--section-space) + 30px) 0 var(--section-space);
}

.blog-detail-breadcrumb {
	margin-bottom: 24px;
}

.blog-detail-breadcrumb .breadcrumb {
	margin-bottom: 0;
}

.blog-detail-hero {
	margin-bottom: 32px;
}

.blog-detail-header {
	margin-top: 24px;
}

.blog-detail-category {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent-color);
	margin-bottom: 12px;
}

.blog-detail-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 12px;
}

.blog-detail-meta {
	font-size: 14px;
	opacity: 0.75;
	margin-bottom: 16px;
}

.blog-detail-excerpt {
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.85;
	margin-bottom: 0;
}

.blog-detail-thumb {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
	border: 1px solid var(--divider-color);
}

.blog-detail-thumb img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.blog-detail-content {
	font-size: 16px;
	line-height: 1.75;
	opacity: 0.9;
}

.blog-detail-content p {
	margin-bottom: 1rem;
}

.team-avatar-photo {
	padding: 0;
	overflow: hidden;
}

.team-avatar-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-page-intro {
	text-align: center;
	margin-bottom: var(--section-header-gap);
}

.team-showcase {
	display: flex;
	flex-direction: column;
	gap: clamp(40px, 6vw, 64px);
}

.team-showcase-row {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

.team-showcase-row.is-reversed .team-showcase-media {
	order: 2;
}

.team-showcase-row.is-reversed .team-showcase-content {
	order: 1;
}

.team-showcase-media {
	display: flex;
	width: 100%;
}

.team-showcase-row:not(.is-reversed) .team-showcase-media {
	justify-content: flex-start;
}

.team-showcase-row.is-reversed .team-showcase-media {
	justify-content: flex-end;
}

.team-showcase-photo {
	position: relative;
	width: 100%;
	max-width: 420px;
	aspect-ratio: 3 / 4;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.team-showcase-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.team-showcase-photo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
}

.team-showcase-photo-fallback span {
	font-size: 96px;
	font-weight: 700;
	color: var(--black-color);
}

.team-showcase-role {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-secondary-color);
	margin-bottom: 10px;
}

.team-showcase-name {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	margin-bottom: 18px;
	line-height: 1.2;
}

.team-showcase-description {
	font-size: 17px;
	line-height: 1.75;
	opacity: 0.9;
	margin-bottom: 20px;
}

.team-showcase-notes {
	font-size: 16px;
	line-height: 1.75;
	opacity: 0.88;
	margin-bottom: 24px;
}

.team-showcase-notes p {
	margin-bottom: 1em;
}

.team-showcase-notes p:last-child {
	margin-bottom: 0;
}

.team-showcase-notes span,
.team-showcase-notes font,
.team-showcase-notes div {
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	background: transparent;
}

.team-showcase-social {
	justify-content: flex-start;
	margin-top: 8px;
}

@media only screen and (max-width: 991px) {
	.page-hero {
		padding: 110px 0 var(--section-space-tight);
	}

	.service-detail-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.service-detail-process .process-steps {
		grid-template-columns: 1fr 1fr;
	}

	.team-showcase {
		gap: 40px;
	}

	.team-showcase-row,
	.team-showcase-row.is-reversed {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.team-showcase-media,
	.team-showcase-row:not(.is-reversed) .team-showcase-media,
	.team-showcase-row.is-reversed .team-showcase-media {
		justify-content: center;
	}

	.team-showcase-photo {
		max-width: 360px;
	}

	.team-showcase-row.is-reversed .team-showcase-media,
	.team-showcase-row.is-reversed .team-showcase-content {
		order: unset;
	}
}
