/* ==========================================================================
   Offer
   ========================================================================== */

.seo-offer .row-1 {
	align-items: center;
}

.seo-offer .row-2 {
	margin-top: 4rem;
}

.seo-offer__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

.seo-offer__item {
	padding: 2.4rem 3.2rem;
	background-color: var(--white-1);
	border: 2px solid rgba(0, 0, 0, .04);
	border-radius: var(--radius-3);
	transition: all 0.3s ease;
}

.seo-offer__item:hover {
	border-color: var(--color-1);
}

.seo-offer__item .title-6 {
	font-weight: 600;
}

.seo-offer__button {
	text-align: center;
	margin-top: 4rem;
}

@media (max-width: 767.98px) {
	.seo-offer__grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Features
   ========================================================================== */
.seo-features {
	padding: 0 1.6rem;
}

.seo-features .section-box {
	background-color: var(--bg-2);
	border-radius: var(--radius-6);
}
.seo-features .item .title-5 {
	margin-bottom: 0.8rem;
	color: var(--font-color-1);
}
.seo-features .item .text-s {
	color: var(--font-color-2);
}

/* ==========================================================================
   Industries
   ========================================================================== */

.seo-industries__header {
	margin-bottom: 4rem;
	text-align: center;
}

.industry-card {
	background-color: var(--white-1);
	padding: 4rem;
	border-radius: var(--radius-4);
	height: 100%;
	transition: transform 0.3s ease;
}

.industry-card:hover {
	transform: translateY(-8px);
}

.industry-card__icon {
	width: 4.8rem;
	height: 4.8rem;
	background-color: var(--color-1);
	color: var(--white-1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2.4rem;
}

.industry-card .title-6 {
	margin-bottom: 1.6rem;
}

.seo-industries__button {
	margin-top: 4rem;
	text-align: center;
}

/* ==========================================================================
   Case Study
   ========================================================================== */

.seo-case-study {
	padding: 0 1.6rem;
}

.seo-case-study .section-box {
	background-color: var(--bg-2);
	border-radius: var(--radius-6);
}

.seo-case-study {
	position: relative;
	background-color: var(--bg-1);
}

.seo-case-study__image {
	height: 100%;
}

.seo-case-study__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-5);
}

.seo-case-study .title-2 {
	margin-bottom: 3.2rem;
}


.seo-case-study .text {
	margin-bottom: 3.2rem;
}

.seo-case-study .text p {
	margin-bottom: 1.6rem;
}

.seo-case-study .text p:last-child {
	margin-bottom: 0;
}

.seo-case-study .specialization-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.seo-case-study .specialization-list li {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 1.6rem;
	color: var(--font-color-1);
}

.seo-case-study .specialization-list li:last-child {
	margin-bottom: 0;
}

.seo-case-study .specialization-list .icon svg {
	height: 2rem;
	fill: transparent;
}

.seo-case-study .specialization-list .icon svg path {
	stroke: var(--color-1);
}

.seo-case-study__content .button {
	margin-top: 4rem;
}

@media (max-width: 991.98px) {
	
	.seo-case-study .row {
		flex-direction: column-reverse;
	}
}

/* ==========================================================================
   Process
   ========================================================================== */

.seo-process .row-1 {
	align-items: center;
	margin-bottom: 12rem;
}

.seo-process__text .button {
	margin-top: 3.2rem;
}

.seo-process__timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2.4rem;
	position: relative;
	padding-top: 3.2rem;
}

.seo-process__timeline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--white-3);
	z-index: 1;
}

.timeline-item {
	position: relative;
}

.timeline-item::before {
	content: "";
	position: absolute;
	top: -3.7rem;
	left: 0;
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--color-1);
	border-radius: 50%;
	z-index: 2;
}

.timeline-item .title-6 {
	margin-bottom: 1.2rem;
}
.timeline-item .text-s {
	color: var(--font-color-2);
}

@media (max-width: 991.98px) {
	.seo-process__timeline {
		grid-template-columns: 1fr;
		padding-top: 0;
		padding-left: 3.2rem;
	}
	.seo-process__timeline::before {
		width: 2px;
		height: 100%;
		left: 0;
		top: 0;
	}
	.timeline-item::before {
		top: 0.6rem;
		left: -3.7rem; 
	}
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.seo-faq {
	padding: 0 1.6rem;
}

.seo-faq .section-box {
	background-color: var(--bg-2);
	border-radius: var(--radius-6);
}

.seo-faq__wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--bg-2-border-darker);
}

.faq-item:first-child {
	border-top: 1px solid var(--bg-2-border-darker);
}

.faq-item__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3.2rem 0;
	cursor: pointer;
	margin: 0;
	transition: color 0.3s ease, padding-bottom 0.3s ease;
}

.faq-item__title:hover {
	color: var(--color-1);
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	background-color: var(--bg-1);
	border-radius: 50%;
	transition: transform 0.3s ease, background-color 0.3s ease;
	flex-shrink: 0;
	margin-left: 1.6rem;
}

.faq-icon svg {
	width: 1.6rem;
	height: 1.6rem;
	fill: transparent;
	transition: transform 0.3s ease;
}

.faq-icon svg path {
	stroke: var(--font-color-1);
	transition: stroke 0.3s ease;
}

.faq-item__collapse {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-item__collapse {
	grid-template-rows: 1fr;
}

.faq-item__content {
	overflow: hidden;
	padding-bottom: 0;
	color: var(--font-color-2);
	transition: padding-bottom 0.4s ease;
}

.faq-item.active .faq-icon {
	background-color: var(--color-1);
	transform: rotate(90deg);
}

.faq-item.active .faq-icon svg path {
	stroke: var(--white-1);
}

.faq-item.active .faq-item__title {
	color: var(--color-1);
	padding-bottom: 1.6rem;
}

.faq-item.active .faq-item__content {
	padding-bottom: 3.2rem;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.seo-cta {
	padding: 1.6rem 1.6rem 0 1.6rem;
}

.seo-cta .section-box {
	background-color: var(--bg-1-dark); /* Ciemne tło, nawiązujące do Hero */
	border-radius: var(--radius-6);
}

.seo-cta .accent--empty {
	border-color: var(--white-4);
	color: var(--white-4);
	margin-bottom: 2.4rem;
}

.seo-cta .title-2 {
	color: var(--white-1);
	margin-bottom: 1.6rem;
}

.seo-cta .text {
	color: var(--white-3);
}

.seo-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
	justify-content: flex-end;
}

@media (max-width: 991.98px) {
	.seo-cta__buttons {
		justify-content: flex-start;
		margin-top: 4.8rem;
	}
}