@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #f8f6fb;
	color: #1f2235;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

/* =========================
HERO
========================= */
.workflow-hero {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 120px 7% 80px;
	background: url(../img/projektablauf/header-probjektablauf.jpg) no-repeat;
	background-size: cover;
}

.workflow-layout{
    width:min(1440px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:120px 1fr;
    gap:40px;
}

.workflow-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle,	rgba(255, 255, 255, .14) 1px,transparent 1px);
	background-size: 24px 24px;
	opacity: .25;
}

.workflow-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.workflow-content h1 {
	font-size: 92px;
	line-height: 1;
	color: #fff;
	margin-bottom: 28px;
}

.workflow-content p {
	color: rgba(255, 255, 255, .92);
	font-size: 22px;
	line-height: 1.9;
	margin-bottom: 40px;
	max-width: 700px;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.hero-badges span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 50px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	backdrop-filter: blur(10px);
}

.hero-visual {
	position: relative;
}

.hero-card {
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	padding: 30px;
	animation: floatCard 6s ease-in-out infinite;
}

.hero-card img {
	border-radius: 24px;
}

.floating-icon {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 28px;
	animation: floatIcon 5s ease-in-out infinite;
}

.icon-1 {
	top: -30px;
	left: -20px;
}

.icon-2 {
	top: 120px;
	right: -40px;
	animation-delay: 1s;
}

.icon-3 {
	bottom: -20px;
	left: 50px;
	animation-delay: 2s;
}

/* =========================
SECTION
========================= */
.workflow-section {
	position: relative;
	padding: 120px 7%;
}

.workflow-layout {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 40px;
}

/* =========================
STICKY PROGRESS
========================= */
.progress-sidebar {
	position: sticky;
	top: 120px;
	height: max-content;
}

.progress-line {
	position: absolute;
	left: 31px;
	top: 20px;
	width: 4px;
	height: 85%;
	border-radius: 50px;
	background: #eddcf9;
}

.progress-fill {
	position: absolute;
	left: 31px;
	top: 20px;
	width: 4px;
	height: 0;
	border-radius: 50px;
	background:	linear-gradient(180deg,	#ff4ca7,#7d43ff);transition: .2s ease;
}

.step-dot {
	position: relative;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 34px;
	background: #fff;
	box-shadow:	0 10px 25px rgba(180, 120, 220, .12);
	font-weight: 700;
	color: #b54be2;
	z-index: 2;
}

.step-dot.active {
	background:	linear-gradient(135deg,	#ff4ca7,#c63fd8);
	color: #fff;
	transform: scale(1.08);
}

/* =========================
STEP CARD
========================= */
.step-card {
	position: relative;
	display: grid;
	grid-template-columns: 180px 1fr 180px;
	gap: 40px;
	align-items: center;
	padding: 45px;
	border-radius: 34px;
	background: rgba(255, 255, 255, .74);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, .5);
	box-shadow:	0 18px 45px rgba(180, 120, 220, .08);
	margin-bottom: 40px;
	overflow: hidden;
	transition: .45s ease;
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow:	0 25px 55px rgba(180, 120, 220, .14);
}

.step-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:	radial-gradient(circle at top left,	rgba(255, 90, 220, .08),transparent 35%);
	opacity: 0;
	transition: .4s ease;
}

.step-card:hover::before {
	opacity: 1;
}

.step-icon {
	width: 120px;
	height: 120px;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	background:	linear-gradient(180deg,	#fff,#fdefff);
	box-shadow:	0 12px 30px rgba(220, 120, 220, .18);
	color: #d84bc0;
	font-size: 44px;
	transition: .4s ease;
}

.step-card:hover .step-icon {
	transform: scale(1.08) rotate(-6deg);
}

.step-content h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.step-content p {
	color: #666;
	line-height: 2;
	margin-bottom: 24px;
	font-size: 17px;
}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.feature-tags span {
	padding: 12px 18px;
	border-radius: 40px;
	background: #f6effc;
	color: #c44ad0;
	font-size: 14px;
	font-weight: 600;
}

.step-time {
	text-align: center;
}

.time-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	background:	linear-gradient(135deg,	#ff4ca7,#c63fd8);
	color: #fff;
	font-size: 30px;
	box-shadow:	0 12px 25px rgba(255, 80, 210, .25);
}

.step-time h3 {
	font-size: 26px;
	margin-bottom: 10px;
}

.step-time span {
	color: #777;
}

/* =========================
CTA
========================= */
.workflow-cta {
	margin-top: 80px;
	padding: 70px;
	border-radius: 40px;
	background:	linear-gradient(135deg,	#ff4ca7,#b03fe1,#6c3dff);
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow:	0 25px 60px rgba(160, 80, 220, .22);
}

.workflow-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:	radial-gradient(circle,	rgba(255, 255, 255, .12) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: .3;
}

.cta-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cta-content h2 {
	font-size: 58px;
	margin-bottom: 18px;
}

.cta-content p {
	font-size: 22px;
	line-height: 1.8;
	opacity: .92;
}

.cta-buttons {
	display: flex;
	gap: 18px;
}

.cta-btn {
	height: 64px;
	padding: 0 34px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	font-weight: 600;
	transition: .35s ease;
}

.cta-primary {
	background: #fff;
	color: #d84bc0;
}

.cta-secondary {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .15);
}

.cta-btn:hover {
	transform: translateY(-6px);
}

/* =========================
FAQ
========================= */
.faq-section {
	 padding: 0 0 40px;
  	 width: min(1440px,92%);
 	 margin: 0 auto;
}

.faq-title {
	 font-size: 52px;
	 margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.faq-item {
	background: #fff;
	border-radius: 28px;
	padding: 30px;
	box-shadow:	0 10px 30px rgba(180, 120, 220, .08);
	cursor: pointer;
	transition: .35s ease;
    align-self: start;
}

.faq-item:hover {
	transform: translateY(-6px);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.faq-question h3 {
	font-size: 22px;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.35s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-answer p {
	padding-top: 20px;
	color: #666;
	line-height: 1.9;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

/* =========================
ANIMATIONS
========================= */
@keyframes gradientMove {
	0% {background-position: 0% 50%;}
	50% {background-position: 100% 50%;}
	100% {background-position: 0% 50%;}
}

@keyframes floatCard {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-12px);}
	100% {transform: translateY(0px);}
}

@keyframes floatIcon {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-10px);}
	100% {transform: translateY(0px);}
}

.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: 1s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* =========================
MINI SUPPORT BOX
========================= */
.mini-support-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 34px 40px;
	margin-top: 60px;
	border-radius: 34px;
	background:	rgba(255, 255, 255, .76);
	backdrop-filter: blur(12px);
	border:	1px solid rgba(255, 255, 255, .6);
	box-shadow:	0 12px 35px rgba(180, 120, 220, .08);
	transition: .4s ease;
	overflow: hidden;
	position: relative;
}

.mini-support-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:	radial-gradient(circle at left,	rgba(255, 90, 220, .08),transparent 35%);
	opacity: 0;
	transition: .4s ease;
}

.mini-support-box:hover {
	transform: translateY(-6px);
	box-shadow:	0 18px 45px rgba(180, 120, 220, .14);
}

.mini-support-box:hover::before {
	opacity: 1;
}

.support-left {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
	z-index: 2;
}

.support-icon {
	width: 78px;
	height: 78px;
	min-width: 78px;
	border-radius: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:	linear-gradient(135deg,	#ff4ca7,#c63fd8);
	color: #fff;
	font-size: 30px;
	box-shadow:	0 12px 25px rgba(255, 80, 210, .25);
	animation: floatMini 4s ease-in-out infinite;
}

.support-content h3 {
	font-size: 30px;
	margin-bottom: 12px;
	color: #1f2235;
}

.support-content p {
	color: #666;
	line-height: 1.9;
	max-width: 700px;
}

.support-btn {
	position: relative;
	z-index: 2;
	height: 62px;
	padding: 0 34px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	font-weight: 600;
	background: #fff;
	color: #e441b5;
	border: 2px solid rgba(228, 65, 181, .22);
	transition: .35s ease;
}

.support-btn:hover {
	transform:translateY(-4px) scale(1.03);
	background:linear-gradient(135deg,#ff4ca7,#c63fd8);
	color: #fff;
	box-shadow:0 14px 30px rgba(255, 80, 210, .30);
}

.support-btn i {
	transition: .3s ease;
}

.support-btn:hover i {
	transform: translateX(5px);
}

/* =========================
FLOAT
========================= */
@keyframes floatMini {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-8px);}
	100% {transform: translateY(0px);}
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px) {

	.workflow-grid,
	.cta-content,
	.faq-grid {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.workflow-layout {
		grid-template-columns: 1fr;
	}

	.progress-sidebar {
		display: none;
	}

	.step-card {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media(max-width:900px) {
	.mini-support-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px;
	}

	.support-left {
		align-items: flex-start;
	}

	.support-content h3 {
		font-size: 24px;
	}

	.support-btn {
		width: 100%;
		justify-content: center;
	}
}

@media(max-width:800px) {
	.workflow-content h1 {
		font-size: 58px;
	}

	.workflow-content p,
	.cta-content p {
		font-size: 18px;
	}

	.step-content h2 {
		font-size: 34px;
	}

	.workflow-cta {
		padding: 40px 30px;
	}

	.cta-content h2,
	.faq-title {
		font-size: 40px;
	}
}

@media(max-width:600px) {
	.support-left {
		flex-direction: column;
	}

	.support-content p {
		font-size: 15px;
	}
}