

/* Start:/local/assets/css/homepage.css?177934561449962*/
/* ==========================================================
   TRUST BAR
   ========================================================== */

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.prr-trustbar {
	position: relative;
	z-index: 10;
	margin-top: 46px;
	padding: 0 20px;
	max-width: 1480px;
    margin: 0 auto;
    margin-top: 30px;
}

.prr-trustbar-inner {
	position: relative;
	-max-width: 1496px;
	margin: 0 auto;
	padding: 34px;
	border-radius: 28px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,0.92) 0%,
			rgba(255,255,255,0.82) 100%
		);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	border: 1px solid rgba(214,219,245,0.7);

	box-shadow:
		0 18px 60px rgba(15,23,42,0.08),
		0 4px 18px rgba(90,80,200,0.06);
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.prr-trustbar-title {
	margin-bottom: 28px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.02em;

	color: #0F172A;

	text-align: center;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.prr-trustbar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* ==========================================================================
   ITEM
   ========================================================================== */

.prr-trustbar-item {
	position: relative;

	display: flex;
	align-items: flex-start;
	gap: 16px;

	padding: 22px;

	border-radius: 22px;

	background: #FFFFFF;

	border: 1px solid #E8ECF7;

	transition:
		transform .22s ease,
		box-shadow .22s ease,
		border-color .22s ease;
}

.prr-trustbar-item:hover {
	transform: translateY(-3px);

	border-color: #D6DBF5;

	box-shadow:
		0 12px 35px rgba(90,80,200,0.10);
}

/* ==========================================================================
   ICON
   ========================================================================== */

.prr-trustbar-icon {
	flex-shrink: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	border-radius: 14px;

	font-size: 20px;

	background: #F8FAFC;
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.prr-trustbar-content {
	min-width: 0;
}

.prr-trustbar-name {
	margin-bottom: 8px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;

	color: #0F172A;
}

.prr-trustbar-text {
	font-family: "Roboto", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;

	color: #64748B;
}

/* ==========================================================================
   ACCENT COLORS
   ========================================================================== */

.prr-trustbar-item-green .prr-trustbar-icon {
	background: rgba(47,125,107,0.10);
}

.prr-trustbar-item-purple .prr-trustbar-icon {
	background: rgba(90,80,200,0.10);
}

.prr-trustbar-item-legal .prr-trustbar-icon {
	background: rgba(59,130,246,0.10);
}

.prr-trustbar-item-search .prr-trustbar-icon {
	background: rgba(139,92,246,0.10);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {

	.prr-trustbar-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.prr-trustbar {
		margin-top: 24px;
		padding: 0 12px;
	}

	.prr-trustbar-inner {
		padding: 22px;
		border-radius: 24px;
	}

	.prr-trustbar-title {
		margin-bottom: 20px;
		font-size: 18px;
	}

	.prr-trustbar-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.prr-trustbar-item {
		padding: 18px;
		border-radius: 18px;
	}

	.prr-trustbar-name {
		font-size: 16px;
	}

	.prr-trustbar-text {
		font-size: 13px;
		line-height: 1.5;
	}
}

/* ==========================================================================
   platform_core
   ========================================================================== */
   
/* ==========================================================================
   CORE PLATFORM
   ========================================================================== */

.prr-core-platform {
	position: relative;
	padding: 110px 0;
	-background:
		linear-gradient(
			180deg,
			#F8FAFC 0%,
			#FFFFFF 100%
		);
	overflow: hidden;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.prr-core-head {
	max-width: 860px;
	margin: 0 auto 60px;
	text-align: center;
}

.prr-core-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 34px;
	padding: 0 16px;
	margin-bottom: 22px;

	border-radius: 999px;

	background: rgba(90,80,200,0.08);

	border: 1px solid rgba(90,80,200,0.12);

	font-family: "Roboto", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;

	color: #5A50C8;
}

.prr-core-title {
	margin: 0 0 18px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;

	color: #0F172A;
}

.prr-core-subtitle {
	font-family: "Roboto", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;

	color: #64748B;
}

/* ==========================================================================
   GRID
   ========================================================================== */

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

/* ==========================================================================
   CARD
   ========================================================================== */

.prr-core-card {
	position: relative;

	padding: 38px;

	border-radius: 32px;

	background: rgba(255,255,255,0.9);

	border: 1px solid #E8ECF7;

	backdrop-filter: blur(12px);

	overflow: hidden;

	transition:
		transform .28s ease,
		box-shadow .28s ease,
		border-color .28s ease;
}

.prr-core-card:hover {
	transform: translateY(-6px);

	border-color: #D6DBF5;

	box-shadow:
		0 24px 70px rgba(15,23,42,0.08),
		0 10px 32px rgba(90,80,200,0.08);
}

/* ==========================================================================
   TOP AREA
   ========================================================================== */

.prr-core-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 68px;
	height: 68px;

	margin-bottom: 28px;

	border-radius: 22px;
}

.prr-core-icon svg {
	width: 30px;
	height: 30px;
	stroke-width: 2.2;
}

.prr-core-number {
	position: absolute;
	top: 34px;
	right: 34px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 52px;
	font-weight: 800;
	line-height: 1;

	color: rgba(148,163,184,0.12);

	user-select: none;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.prr-core-card-title {
	margin: 0 0 14px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;

	color: #0F172A;
}

.prr-core-card-text {
	margin-bottom: 30px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;

	color: #64748B;
}

/* ==========================================================================
   LIST
   ========================================================================== */

.prr-core-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.prr-core-list-item {
	display: flex;
	align-items: center;
	gap: 12px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;

	color: #334155;
}

.prr-core-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ==========================================================================
   COLORS
   ========================================================================== */

.prr-core-card-green .prr-core-icon {
	background: rgba(47,125,107,0.10);
	color: #2F7D6B;
}

.prr-core-card-green .prr-core-dot {
	background: #2F7D6B;
}

.prr-core-card-purple .prr-core-icon {
	background: rgba(90,80,200,0.10);
	color: #5A50C8;
}

.prr-core-card-purple .prr-core-dot {
	background: #5A50C8;
}

.prr-core-card-blue .prr-core-icon {
	background: rgba(59,130,246,0.10);
	color: #2563EB;
}

.prr-core-card-blue .prr-core-dot {
	background: #2563EB;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {

	.prr-core-grid {
		grid-template-columns: 1fr;
		max-width: 760px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {

	.prr-core-platform {
		padding: 80px 0;
	}

	.prr-core-head {
		margin-bottom: 42px;
	}

	.prr-core-title {
		font-size: 34px;
	}

	.prr-core-subtitle {
		font-size: 16px;
		line-height: 1.6;
	}

	.prr-core-grid {
		gap: 18px;
	}

	.prr-core-card {
		padding: 28px;
		border-radius: 26px;
	}

	.prr-core-number {
		font-size: 42px;
		top: 24px;
		right: 24px;
	}

	.prr-core-card-title {
		font-size: 24px;
	}

	.prr-core-card-text {
		font-size: 15px;
		margin-bottom: 24px;
	}
}

@media (max-width: 480px) {

	.prr-core-platform {
		padding: 64px 0;
	}

	.prr-core-title {
		font-size: 28px;
	}

	.prr-core-card {
		padding: 22px;
		border-radius: 22px;
	}

	.prr-core-icon {
		width: 58px;
		height: 58px;
		margin-bottom: 22px;
		border-radius: 18px;
	}

	.prr-core-icon svg {
		width: 24px;
		height: 24px;
	}

	.prr-core-card-title {
		font-size: 22px;
	}

	.prr-core-card-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.prr-core-list-item {
		font-size: 14px;
	}
}   


/* ==========================================================================
   workflow
   ========================================================================== */

.prr-workflow {
	position: relative;
	    padding: 0px 24px 110px;
	-background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f7f9fc 100%
		);
	overflow: hidden;
	max-width: 1480px;
    margin: 0 auto;
	border-radius: 34px;
}

.prr-workflow-bg {
	position: absolute;
	top: -20px;
	right: -10px;
	width: 520px;
	height: 520px;
	background:
		radial-gradient(
			circle,
			rgba(122, 92, 255, 0.08) 0%,
			rgba(122, 92, 255, 0) 72%
		);
	pointer-events: none;
}

.prr-workflow-limiter {
	padding: 0 24 px;
}

/* ==========================================================
   HEAD
   ========================================================== */

.prr-workflow-head {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.prr-workflow-label {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(122, 92, 255, 0.08);
	border: 1px solid rgba(122, 92, 255, 0.12);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #6d4dff;
	margin-bottom: 24px;
}

.prr-workflow-title {
	margin: 0 0 24px;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.04em;
	color: #121826;
}

.prr-workflow-text {
	font-size: 18px;
	line-height: 1.8;
	color: #5f6b7a;
}

/* ==========================================================
   LINE
   ========================================================== */

.prr-workflow-line {
	position: relative;
	height: 1px;
	margin-bottom: 60px;
	background:
		linear-gradient(
			90deg,
			rgba(122,92,255,0) 0%,
			rgba(122,92,255,.18) 50%,
			rgba(122,92,255,0) 100%
		);
}

/* ==========================================================
   GRID
   ========================================================== */

.prr-workflow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
	z-index: 2;
}

/* ==========================================================
   CARD
   ========================================================== */

.prr-workflow-card {
	position: relative;
	padding: 34px;
	border-radius: 30px;
	background: rgba(255,255,255,.82);
	border: 1px solid rgba(20,30,50,.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 10px 30px rgba(15,23,42,.04);
	transition:
		transform .3s ease,
		box-shadow .3s ease,
		border-color .3s ease;
}

.prr-workflow-card:hover {
	transform: translateY(-6px);
	border-color: rgba(122,92,255,.14);
	box-shadow:
		0 24px 60px rgba(15,23,42,.08);
}

/* ==========================================================
   STEP
   ========================================================== */

.prr-workflow-step {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	color: rgba(18,24,38,.18);
}

/* ==========================================================
   ICON
   ========================================================== */

.prr-workflow-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(
			135deg,
			rgba(122,92,255,.14),
			rgba(122,92,255,.06)
		);
	margin-bottom: 26px;
}

.prr-workflow-icon svg {
	width: 26px;
	height: 26px;
	color: #6d4dff;
}

/* ==========================================================
   TEXT
   ========================================================== */

.prr-workflow-card-title {
	margin: 0 0 18px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #121826;
}

.prr-workflow-card-text {
	font-size: 15px;
	line-height: 1.8;
	color: #647084;
}

/* ==========================================================
   TAGS
   ========================================================== */

.prr-workflow-tags,
.prr-workflow-results {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.prr-workflow-tag,
.prr-workflow-result {
	padding: 10px 14px;
	border-radius: 999px;
	background: #f3f5fa;
	border: 1px solid rgba(20,30,50,.06);
	font-size: 13px;
	font-weight: 600;
	color: #3f4b5c;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1200px) {

	.prr-workflow-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	
	.prr-workflow-limiter {
		padding: 0 12px;
	}
	
	.prr-workflow-head {
		margin: 0 auto;
	}

	.prr-workflow {
		padding: 0px;
	}

	.prr-workflow-grid {
		grid-template-columns: 1fr;
	}

	.prr-workflow-title {
		font-size: 38px;
	}

	.prr-workflow-card {
		padding: 28px;
		border-radius: 24px;
	}
}   

/* ==========================================================
   scenario-content
   ========================================================== */
   
/* ==========================================================================
   SECTION
   ========================================================================== */

.prr-scenarios-section {
	position: relative;
	-padding: 110px 0;
	background: #F4F7FB;
	overflow: hidden;
	border-radius: 18px;
	margin-bottom: 110px;
}

.prr-scenarios-section::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;

	-background:
		radial-gradient(
			circle,
			rgba(90,80,200,0.14) 0%,
			rgba(90,80,200,0) 72%
		);

	pointer-events: none;
}

/* ==========================================================================
   HEAD
   ========================================================================== */

.prr-scenarios-head {
	max-width: 820px;
	margin: 0 auto 56px;
	text-align: center;
	padding: 0 20px;
}

.prr-scenarios-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 38px;
	padding: 0 18px;
	margin-bottom: 20px;

	border-radius: 999px;

	background:
		linear-gradient(
			135deg,
			rgba(90,80,200,0.12) 0%,
			rgba(90,80,200,0.04) 100%
		);

	border: 1px solid rgba(90,80,200,0.1);

	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;

	color: #5A50C8;
}

.prr-scenarios-title {
	margin: 0 0 18px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.04em;

	color: #0F172A;
}

.prr-scenarios-description {
	max-width: 760px;
	margin: 0 auto;

	font-size: 18px;
	line-height: 1.7;

	color: #64748B;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.prr-scenarios-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	grid-auto-rows: 260px;
	gap: 22px;

	max-width: 1460px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   CARD SIZES
   ========================================================================== */

.prr-card-large {
	grid-row: span 2;
}

.prr-card-small {
	grid-row: span 1;
}

.prr-card-wide {
	grid-column: span 2;
}

.prr-card-tall {
	grid-row: span 2;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.prr-scenario-card {
	position: relative;
	border-radius: 34px;
	overflow: hidden;

	display: flex;
	align-items: flex-end;

	background-color: #0F172A;

	box-shadow:
		0 24px 60px rgba(15,23,42,0.12);

	transition:
		transform .32s ease,
		box-shadow .32s ease;
}

.prr-scenario-card:hover {
	transform: translateY(-6px);

	box-shadow:
		0 36px 80px rgba(15,23,42,0.18);
}

/* ==========================================================================
   BACKGROUNDS
   ========================================================================== */

.prr-scenario-design {
	background:
		url("/upload/medialibrary/4a9/uescn9aqqz0dpr1kfsxd0p68aachy3pc/disayn_2.jpg") center center / cover no-repeat;
}

.prr-scenario-dev {
	background:
		url("/upload/medialibrary/e11/7gtie7l5jwcacp0ndf04y4h1b1nm7q1e/kod_2.jpg") center center / cover no-repeat;
}

.prr-scenario-author {
	background:
		url("/upload/medialibrary/a88/7jq0erx9upm202po7dqg8yjx38oytbcn/text_2.jpg") center center / cover no-repeat;
}

.prr-scenario-company {
	background:
		url("/upload/medialibrary/7b4/856c2iip3rl6n6v2vsrf4dbd5c84bv4c/brend_2.jpg") center center / cover no-repeat;
}

.prr-scenario-legal {
	background:
		url("/upload/scenario-legal.jpg") center center / cover no-repeat;
}

/* ==========================================================================
   OVERLAY
   ========================================================================== */

.prr-scenario-overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(15,23,42,0.06) 0%,
			rgba(15,23,42,0.46) 42%,
			rgba(15,23,42,0.92) 100%
		);
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.prr-scenario-content {
	position: relative;
	z-index: 2;

	width: 100%;
	padding: 30px;
}

/* ==========================================================================
   TOP
   ========================================================================== */

.prr-scenario-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

/* ==========================================================================
   ICON
   ========================================================================== */

.prr-scenario-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	border-radius: 16px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,0.18) 0%,
			rgba(255,255,255,0.08) 100%
		);

	backdrop-filter: blur(12px);

	border: 1px solid rgba(255,255,255,0.08);

	color: #FFFFFF;
}

.prr-scenario-icon svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.2;
}

/* ==========================================================================
   LABEL
   ========================================================================== */

.prr-scenario-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;

	color: rgba(255,255,255,0.72);
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.prr-scenario-title {
	margin: 0 0 14px;

	font-family: "Roboto", Arial, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.04em;

	color: #FFFFFF;

	text-shadow:
		0 4px 18px rgba(0,0,0,0.28);
}

.prr-card-small .prr-scenario-title {
	font-size: 24px;
}

.prr-card-wide .prr-scenario-title {
	font-size: 32px;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.prr-scenario-text {
	margin-bottom: 22px;

	font-size: 15px;
	line-height: 1.68;

	color: rgba(226,232,240,0.92);
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.prr-scenario-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 48px;
	padding: 0 22px;

	border-radius: 14px;

	background:
		linear-gradient(
			135deg,
			rgba(255,255,255,0.16) 0%,
			rgba(255,255,255,0.08) 100%
		);

	backdrop-filter: blur(12px);

	border: 1px solid rgba(255,255,255,0.08);

	font-size: 14px;
	font-weight: 600;

	color: #FFFFFF;
	text-decoration: none;

	transition:
		transform .22s ease,
		background .22s ease;
}

.prr-scenario-button:hover {
	transform: translateY(-2px);

	background:
		linear-gradient(
			135deg,
			rgba(255,255,255,0.22) 0%,
			rgba(255,255,255,0.12) 100%
		);

	color: #FFFFFF;
	text-decoration: none;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 1100px) {

	.prr-scenarios-grid {
		grid-template-columns: 1fr 1fr;
	}

	.prr-card-wide {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {

	.prr-scenarios-section {
		padding: 80px 0;
	}

	.prr-scenarios-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.prr-card-large,
	.prr-card-wide,
	.prr-card-tall {
		grid-column: span 1;
		grid-row: span 1;
	}

	.prr-scenario-card {
		min-height: 320px;
		border-radius: 28px;
	}

	.prr-scenario-content {
		padding: 24px;
	}

	.prr-scenario-title,
	.prr-card-small .prr-scenario-title,
	.prr-card-wide .prr-scenario-title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {

	.prr-scenarios-grid {
		gap: 16px;
		padding: 0 16px;
	}

	.prr-scenario-card {
		min-height: 280px;
		border-radius: 24px;
	}

	.prr-scenario-content {
		padding: 20px;
	}

	.prr-scenario-title {
		font-size: 22px !important;
		line-height: 1.1;
	}

	.prr-scenario-text {
		font-size: 13px;
		line-height: 1.55;
	}

	.prr-scenario-button {
		width: 100%;
		max-width: 260px;
	}
}   
   
   
/* ==========================================================================
   proof
   ========================================================================== */   
   
/* ==========================================================================
   PROOF SECTION
   ========================================================================== */

.prr-proof {
	position: relative;
	padding: 120px 0;
	background:
		linear-gradient(
			180deg,
			#0B1120 0%,
			#111827 100%
		);
	overflow: hidden;
	border-radius: 34px;
    padding: 30px;
	max-width: 1480px;
	margin: 0 auto;
}

.prr-proof-content {
	padding: 0 12px;
}

/* ==========================================================================
   BACKGROUND
   ========================================================================== */

.prr-proof::before {
	content: "";
	position: absolute;
	top: -240px;
	left: -160px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(90,80,200,.18) 0%,
			rgba(90,80,200,0) 72%
		);
}

.prr-proof::after {
	content: "";
	position: absolute;
	bottom: -260px;
	right: -180px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(34,197,94,.12) 0%,
			rgba(34,197,94,0) 72%
		);
}

/* ==========================================================================
   HEAD
   ========================================================================== */

.prr-proof-head {
	position: relative;
	z-index: 2;
	max-width: 860px;
	margin: 0 auto 60px;
	text-align: center;
}

.prr-proof-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.08) 0%,
			rgba(255,255,255,.04) 100%
		);
	border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(12px);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #CBD5E1;
}

.prr-proof-badge svg {
	width: 16px;
	height: 16px;
	color: #8B7CF6;
}

.prr-proof-title {
	margin: 28px 0 18px;
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -.03em;
	color: #FFFFFF;
}

.prr-proof-description {
	font-size: clamp(16px, 2vw, 22px);
	line-height: 1.7;
	color: #94A3B8;
}

/* ==========================================================================
   TABS
   ========================================================================== */

.prr-proof-tabs {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 42px;
	flex-wrap: wrap;
}

.prr-proof-tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 22px;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.08);
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.06) 0%,
			rgba(255,255,255,.03) 100%
		);
	backdrop-filter: blur(12px);
	font-size: 15px;
	font-weight: 600;
	color: #CBD5E1;
	cursor: pointer;
	transition:
		transform .22s ease,
		background .22s ease,
		border-color .22s ease,
		color .22s ease;
}

.prr-proof-tab svg {
	width: 18px;
	height: 18px;
}

.prr-proof-tab:hover {
	transform: translateY(-2px);
	color: #FFFFFF;
}

.prr-proof-tab.active {
	background:
		linear-gradient(
			135deg,
			#6D5EF5 0%,
			#5A50C8 100%
		);
	border-color: rgba(255,255,255,.08);
	color: #FFFFFF;
	box-shadow:
		0 18px 40px rgba(90,80,200,.22);
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.prr-proof-content {
	position: relative;
	z-index: 2;
	max-width: 1480px;
    margin: 0 auto 110px;
}

.prr-proof-pane {
	display: none;
}

.prr-proof-pane.active {
	display: block;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.prr-proof-grid {
	display: grid;
	grid-template-columns: 1.35fr .65fr;
	gap: 24px;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.prr-proof-card {
	position: relative;
	padding: 38px;
	border-radius: 34px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.08) 0%,
			rgba(255,255,255,.03) 100%
		);
	border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(18px);
	box-shadow:
		0 20px 60px rgba(0,0,0,.22);
	overflow: hidden;
}

.prr-proof-card-purple {
	background:
		linear-gradient(
			135deg,
			rgba(90,80,200,.24) 0%,
			rgba(255,255,255,.04) 100%
		);
}

.prr-proof-card-gold {
	background:
		linear-gradient(
			135deg,
			rgba(245,158,11,.18) 0%,
			rgba(255,255,255,.04) 100%
		);
}

.prr-proof-card-glow {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(90,80,200,.24) 0%,
			rgba(90,80,200,0) 72%
		);
}

/* ==========================================================================
   CARD TOP
   ========================================================================== */

.prr-proof-card-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 28px;
}

.prr-proof-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background:
		linear-gradient(
			135deg,
			rgba(90,80,200,.22) 0%,
			rgba(255,255,255,.06) 100%
		);
	border: 1px solid rgba(255,255,255,.08);
}

.prr-proof-icon svg {
	width: 28px;
	height: 28px;
	color: #FFFFFF;
}

.prr-proof-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #CBD5E1;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.prr-proof-card-title {
	margin: 0 0 18px;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	color: #FFFFFF;
}

.prr-proof-card-text {
	max-width: 720px;
	font-size: 17px;
	line-height: 1.8;
	color: #94A3B8;
}

/* ==========================================================================
   DOCUMENT
   ========================================================================== */

.prr-proof-document,
.prr-proof-browser,
.prr-proof-case {
	margin-top: 34px;
	padding: 28px;
	border-radius: 24px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.06) 0%,
			rgba(255,255,255,.03) 100%
		);
	border: 1px solid rgba(255,255,255,.06);
}

.prr-proof-document-line,
.prr-proof-browser-line {
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	margin-bottom: 14px;
}

.w100 { width: 100%; }
.w90 { width: 90%; }
.w80 { width: 80%; }
.w70 { width: 70%; }
.w60 { width: 60%; }

.prr-proof-document-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 26px;
}

.prr-proof-stamp {
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(34,197,94,.16);
	border: 1px solid rgba(34,197,94,.22);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	color: #4ADE80;
}

.prr-proof-date {
	font-size: 13px;
	color: #94A3B8;
}

/* ==========================================================================
   BROWSER
   ========================================================================== */

.prr-proof-browser-top {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.prr-proof-browser-top span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
}

.prr-proof-public-label {
	margin-top: 24px;
	padding: 14px 18px;
	border-radius: 16px;
	background: rgba(109,94,245,.16);
	font-size: 14px;
	font-weight: 700;
	color: #C4B5FD;
}

/* ==========================================================================
   CASE
   ========================================================================== */

.prr-proof-case {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.prr-proof-case-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-radius: 16px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.05);
}

.prr-proof-case-item span {
	font-size: 14px;
	color: #CBD5E1;
}

.prr-proof-case-item strong {
	font-size: 14px;
	font-weight: 700;
	color: #FFFFFF;
}

/* ==========================================================================
   SIDE
   ========================================================================== */

.prr-proof-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.prr-proof-mini {
	display: flex;
	gap: 18px;
	padding: 28px;
	border-radius: 28px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.08) 0%,
			rgba(255,255,255,.03) 100%
		);
	border: 1px solid rgba(255,255,255,.08);
	backdrop-filter: blur(14px);
	box-shadow:
		0 16px 40px rgba(0,0,0,.18);
}

.prr-proof-mini-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background:
		linear-gradient(
			135deg,
			rgba(90,80,200,.22) 0%,
			rgba(255,255,255,.05) 100%
		);
	flex-shrink: 0;
}

.prr-proof-mini-icon svg {
	width: 22px;
	height: 22px;
	color: #FFFFFF;
}

.prr-proof-mini-title {
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
}

.prr-proof-mini-text {
	font-size: 15px;
	line-height: 1.7;
	color: #94A3B8;
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

	.prr-proof-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {

	.prr-proof {
		padding: 80px 0;
	}
	
	.prr-scenarios-section {
		padding: 80px 0 10px;
	}

	.prr-proof-head {
		margin-bottom: 40px;
	}

	.prr-proof-title {
		font-size: 34px;
		line-height: 1.08;
	}

	.prr-proof-description {
		font-size: 15px;
		line-height: 1.7;
	}

	.prr-proof-card,
	.prr-proof-mini {
		padding: 26px;
		border-radius: 24px;
	}

	.prr-proof-card-title {
		font-size: 28px;
	}

	.prr-proof-card-text {
		font-size: 15px;
		line-height: 1.7;
	}

	.prr-proof-icon {
		width: 56px;
		height: 56px;
		border-radius: 18px;
	}

	.prr-proof-icon svg {
		width: 24px;
		height: 24px;
	}

	.prr-proof-tab {
		width: 100%;
		justify-content: center;
	}

	.prr-proof-tabs {
		flex-direction: unset;
        max-width: 300px;
        margin: 0 auto 20px;
	}
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

	.prr-proof {
		padding: 64px 0;
	}

	.prr-proof-title {
		font-size: 28px;
	}

	.prr-proof-card,
	.prr-proof-mini {
		padding: 22px;
		border-radius: 22px;
	}

	.prr-proof-card-title {
		font-size: 24px;
	}

	.prr-proof-document,
	.prr-proof-browser,
	.prr-proof-case {
		padding: 22px;
		border-radius: 20px;
	}
}


/* ==========================================================================
   faq
   ========================================================================== */
   
.prr-faq-block {
	padding: 0 24px;
    max-width: 1480px;
    margin: 0 auto;
}

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

.prr-faq-section {
	position: relative;
	padding: 110px 0;
	background:
		linear-gradient(
			180deg,
			#0F172A 0%,
			#111827 100%
		);
	overflow: hidden;
	max-width: 1480px;
	margin: 0 auto;
	border-radius: 34px;
}

.prr-faq-section::before {
	content: "";
	position: absolute;
	top: -160px;
	right: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(99,102,241,0.14) 0%,
			rgba(99,102,241,0) 72%
		);
	pointer-events: none;
}

.prr-faq-section::after {
	content: "";
	position: absolute;
	left: -120px;
	bottom: -140px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(139,92,246,0.12) 0%,
			rgba(139,92,246,0) 72%
		);
	pointer-events: none;
}

/* ==========================================================================
   HEAD
   ========================================================================== */

.prr-faq-head {
	position: relative;
	z-index: 2;
	max-width: 860px;
	margin: 0 auto 70px;
	text-align: center;
}

.prr-faq-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	margin-bottom: 22px;
	border-radius: 999px;
	background:
		rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #C4B5FD;
}

.prr-faq-title {
	margin: 0 0 18px;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #FFFFFF;
}

.prr-faq-subtitle {
	font-size: 18px;
	line-height: 1.7;
	color: #94A3B8;
}

/* ==========================================================================
   GRID
   ========================================================================== */

.prr-faq-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	padding: 0 25px;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.prr-faq-card {
	position: relative;
	padding: 30px;
	border-radius: 28px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,0.06) 0%,
			rgba(255,255,255,0.03) 100%
		);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		0 18px 60px rgba(0,0,0,0.24);
}

/* ==========================================================================
   CARD TOP
   ========================================================================== */

.prr-faq-card-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.prr-faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background:
		linear-gradient(
			135deg,
			rgba(99,102,241,0.22) 0%,
			rgba(139,92,246,0.22) 100%
		);
	color: #FFFFFF;
	flex-shrink: 0;
}

.prr-faq-icon svg {
	width: 22px;
	height: 22px;
	stroke-width: 2.2;
}

.prr-faq-category {
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
}

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

.prr-faq-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.prr-faq-item {
	border-radius: 18px;
	background:
		rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	overflow: hidden;
	transition:
		background .22s ease,
		border-color .22s ease;
}

.prr-faq-item.active {
	background:
		rgba(99,102,241,0.08);
	border-color:
		rgba(99,102,241,0.22);
}

/* ==========================================================================
   QUESTION
   ========================================================================== */

.prr-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
}

.prr-faq-question span {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #FFFFFF;
}

/* ==========================================================================
   ARROW
   ========================================================================== */

.prr-faq-arrow {
	position: relative;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	transition: transform .22s ease;
}

.prr-faq-arrow::before,
.prr-faq-arrow::after {
	content: "";
	position: absolute;
	top: 5px;
	width: 8px;
	height: 2px;
	background: #C4B5FD;
	border-radius: 10px;
}

.prr-faq-arrow::before {
	left: 0;
	transform: rotate(45deg);
}

.prr-faq-arrow::after {
	right: 0;
	transform: rotate(-45deg);
}

.prr-faq-item.active .prr-faq-arrow {
	transform: rotate(180deg);
}

/* ==========================================================================
   ANSWER
   ========================================================================== */

.prr-faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 22px;
	font-size: 15px;
	line-height: 1.75;
	color: #CBD5E1;
	transition:
		max-height .28s ease,
		padding .28s ease;
}

.prr-faq-item.active .prr-faq-answer {
	max-height: 220px;
	padding:
		0 22px 22px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {

	.prr-faq-grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 768px) {
	
	.prr-faq-block {
		padding: 0 12px;
	}

	.prr-faq-section {
		padding: 80px 0;
	}

	.prr-faq-head {
		margin-bottom: 46px;
	}

	.prr-faq-title {
		font-size: 34px;
	}

	.prr-faq-subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.prr-faq-card {
		padding: 22px;
		border-radius: 24px;
	}

	.prr-faq-question {
		padding: 18px;
	}

	.prr-faq-question span {
		font-size: 15px;
	}

}

@media (max-width: 480px) {

	.prr-faq-title {
		font-size: 28px;
	}

	.prr-faq-subtitle {
		font-size: 14px;
	}

	.prr-faq-card {
		padding: 18px;
	}

	.prr-faq-category {
		font-size: 18px;
	}

	.prr-faq-answer {
		font-size: 14px;
		line-height: 1.7;
	}

}   
   
 
/* ==========================================================================
   final
   ========================================================================== */ 
   
/* ==========================================================================
   FINAL CTA — LIGHT VERSION
   ========================================================================== */

.prr-final-cta {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background:
		linear-gradient(
			180deg,
			#FFFFFF 0%,
			#F8FAFC 100%
		);
	max-width: 1480px;
    margin: 0 auto;
	border-radius: 34px;	
}

.prr-limiter {
	padding: 0 25px;
}

/* ==========================================================================
   BACKGROUND
   ========================================================================== */

.prr-final-cta-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.prr-final-cta-bg::before,
.prr-final-cta-bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .6;
}

.prr-final-cta-bg::before {
	top: -140px;
	left: -120px;
	width: 420px;
	height: 420px;
	background: rgba(16, 185, 129, 0.10);
}

.prr-final-cta-bg::after {
	right: -140px;
	bottom: -140px;
	width: 460px;
	height: 460px;
	background: rgba(124, 58, 237, 0.10);
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.prr-final-cta-container {
	position: relative;
	z-index: 2;
	padding: 72px;
	border-radius: 40px;
	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,0.96) 0%,
			rgba(248,250,252,0.96) 100%
		);
	border: 1px solid rgba(148, 163, 184, 0.12);
	box-shadow:
		0 30px 80px rgba(15, 23, 42, 0.06);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* ==========================================================================
   TOP
   ========================================================================== */

.prr-final-cta-top {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

/* ==========================================================================
   LABEL
   ========================================================================== */

.prr-final-cta-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	margin-bottom: 26px;
	border-radius: 999px;
	background:
		linear-gradient(
			180deg,
			#FFFFFF 0%,
			#F8FAFC 100%
		);
	border: 1px solid rgba(148, 163, 184, 0.14);
	box-shadow:
		0 10px 24px rgba(15, 23, 42, 0.04);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #475569;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.prr-final-cta-title {
	margin: 0 0 24px;
	font-family: "Roboto", Arial, sans-serif;
	font-size: clamp(36px, 5vw, 66px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #0F172A;
	text-wrap: balance;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.prr-final-cta-text {
	max-width: 760px;
	margin: 0 auto;
	font-family: "Roboto", Arial, sans-serif;
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 400;
	line-height: 1.75;
	color: #475569;
	text-wrap: balance;
}

/* ==========================================================================
   ACTIONS
   ========================================================================== */

.prr-final-cta-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 52px;
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.prr-final-cta-button {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 26px;
	border-radius: 26px;
	text-decoration: none;
	transition:
		transform .24s ease,
		box-shadow .24s ease,
		border-color .24s ease,
		background .24s ease;
}

/* ==========================================================================
   ICON
   ========================================================================== */

.prr-final-cta-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	flex-shrink: 0;
}

.prr-final-cta-button-icon i {
	width: 24px;
	height: 24px;
}

/* ==========================================================================
   CONTENT
   ========================================================================== */

.prr-final-cta-button-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.prr-final-cta-button-title {
	margin-bottom: 8px;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #0F172A;
}

.prr-final-cta-button-text {
	font-family: "Roboto", Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #64748B;
}

/* ==========================================================================
   GREEN
   ========================================================================== */

.prr-final-cta-button-green {
	background:
		linear-gradient(
			180deg,
			rgba(16,185,129,0.08) 0%,
			rgba(16,185,129,0.03) 100%
		);
	border: 1px solid rgba(16,185,129,0.12);
	box-shadow:
		0 12px 32px rgba(16,185,129,0.08);
}

.prr-final-cta-button-green .prr-final-cta-button-icon {
	background: rgba(16,185,129,0.12);
	color: #059669;
}

.prr-final-cta-button-green:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 42px rgba(16,185,129,0.14);
	text-decoration: none;
}

/* ==========================================================================
   PURPLE
   ========================================================================== */

.prr-final-cta-button-purple {
	background:
		linear-gradient(
			180deg,
			rgba(124,58,237,0.08) 0%,
			rgba(124,58,237,0.03) 100%
		);
	border: 1px solid rgba(124,58,237,0.12);
	box-shadow:
		0 12px 32px rgba(124,58,237,0.08);
}

.prr-final-cta-button-purple .prr-final-cta-button-icon {
	background: rgba(124,58,237,0.12);
	color: #7C3AED;
}

.prr-final-cta-button-purple:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 42px rgba(124,58,237,0.14);
	text-decoration: none;
}

/* ==========================================================================
   DARK / LEGAL
   ========================================================================== */

.prr-final-cta-button-dark {
	background:
		linear-gradient(
			180deg,
			rgba(15,23,42,0.06) 0%,
			rgba(15,23,42,0.03) 100%
		);
	border: 1px solid rgba(15,23,42,0.08);
	box-shadow:
		0 12px 32px rgba(15,23,42,0.06);
}

.prr-final-cta-button-dark .prr-final-cta-button-icon {
	background: rgba(15,23,42,0.08);
	color: #0F172A;
}

.prr-final-cta-button-dark:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 42px rgba(15,23,42,0.10);
	text-decoration: none;
}

/* ==========================================================================
   ACTIVE
   ========================================================================== */

.prr-final-cta-button:active {
	transform: translateY(0);
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 1024px) {

	.prr-final-cta-actions {
		grid-template-columns: 1fr;
	}

	.prr-final-cta-container {
		padding: 54px 40px;
	}
}

@media (max-width: 768px) {
	
	.prr-limiter {
		padding: 0 12px;
	}

	.prr-final-cta {
		padding: 80px 0;
	}

	.prr-final-cta-container {
		padding: 42px 24px;
		border-radius: 30px;
	}

	.prr-final-cta-title {
		font-size: 32px;
		line-height: 1.1;
	}

	.prr-final-cta-text {
		font-size: 15px;
		line-height: 1.7;
	}

	.prr-final-cta-actions {
		margin-top: 34px;
		gap: 14px;
	}

	.prr-final-cta-button {
		padding: 22px;
		border-radius: 22px;
	}

	.prr-final-cta-button-icon {
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}

	.prr-final-cta-button-title {
		font-size: 16px;
	}

	.prr-final-cta-button-text {
		font-size: 13px;
	}
}   
   
/* End */


/* Start:/bitrix/templates/dresscodeV2/components/dresscode/slider/promoSlider/style.min.css?17789415945123*/
#slider,#slider .wrap,#slider ul,#slider ul li{position:relative}#slider{overflow:hidden;width:100%}#slider .wrap{overflow:hidden}#slider ul li{display:block;float:left}#slider ul li .slideLink{text-decoration:none;color:#000}#slider .sliderVideoOverBg{pointer-events:none;position:absolute;height:100%;width:100%;z-index:2}#slider .slideVideoContainer{position:relative;overflow:hidden;height:900px}#slider .limiterContainer,#slider .slideVideo{position:absolute;width:100%;left:0}#slider .videoPoster{background-position:center center;-moz-background-size:cover;background-size:cover;height:555px;display:none}#slider .slideVideoContainer embed,#slider .slideVideoContainer iframe,#slider .slideVideoContainer object{position:absolute;height:100%;width:100%;left:0;top:0}#slider .slideVideo{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:#000;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transform:translateY(-50%);pointer-events:none;object-fit:cover;overflow:hidden;height:auto;top:50%}#slider .limiter{position:relative;height:900px}#slider .sliderContent{transform:translateY(-50%);position:absolute;color:#000;z-index:3;left:0;top:50%}#slider .sliderContent.loading{display:none}#slider .leftContainer{left:0}#slider .centerContainer{transform:translateX(-50%) translateY(-50%);left:50%!important}#slider .rightContainer{left:unset;right:0}#slider .sliderContent .bigText,#slider .sliderContent .bigTextColor,#slider .sliderContent .bigTextLight,#slider .sliderContent .bigTextLightColor{font-family:robotoMedium;line-height:56px;margin-top:24px;font-size:48px;display:block}#slider .sliderContent .mediumText,#slider .sliderContent .mediumTextColor,#slider .sliderContent .mediumTextLight{line-height:36px;margin-top:24px;font-size:30px;display:block}#slider .sliderContent .smallText,#slider .sliderContent .smallTextColor,#slider .sliderContent .smallTextLight{line-height:24px;margin-top:24px;font-size:16px;display:block}#slider .sliderContent .bigTextLight,#slider .sliderContent .bigTextLightColor,#slider .sliderContent .mediumTextLight,#slider .sliderContent .smallTextLight{font-family:roboto_thregular}#slider .sliderContent .whiteColor{color:#fff}#slider .sliderContent .noMargin{margin:0}#slider .sliderContent .cButton,#slider .sliderContent .cButtonLight{display:inline-block;text-align:center;line-height:50px;margin-top:24px;padding:0 24px;height:50px;text-decoration:none}#slider .sliderContent .center{text-align:center}#slider .sliderContent .cButton{-webkit-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out;border-radius:2px;color:#fff}#slider .sliderContent .cButtonLight{-webkit-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out;border:1px solid rgba(0,0,0,.4);border-radius:2px;color:#000}#slider .sliderContent .cButtonLight:hover{border:1px solid rgba(0,0,0,.7)}#slider .sliderContent .cButton:active,#slider .sliderContent .cButtonLight:active{position:relative;top:1px}#slider .sliderContent div:first-child{margin-top:0}#slider ol{margin:0;padding:0;list-style:none;position:absolute;left:50%;bottom:12px}#slider ol li{background:url(/bitrix/templates/dresscodeV2/components/dresscode/slider/promoSlider/images/slideButton.png) no-repeat;margin-right:4px;width:14px;height:14px;float:left;cursor:pointer}#slider ol li:hover{background-position:-14px 0}#slider ol li:active{background-position:-28px 0}#slider ol li.selected{background-position:-42px 0}#slider ol li.selected:hover{background-position:-56px 0}#slider ol li.selected:active{background-position:-70px 0}#slider .sliderBtnLeft,#slider .sliderBtnRight{position:absolute;z-index:20;top:50%;transform:translateY(-50%);display:flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;background:rgba(15,23,42,.38);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.08);box-shadow:0 6px 24px rgba(0,0,0,.18);text-decoration:none;opacity:.72;transition:opacity .22s,transform .22s,background .22s,box-shadow .22s}#slider .sliderBtnLeft{left:18px}#slider .sliderBtnRight{right:18px}#slider .sliderBtnLeft::before,#slider .sliderBtnRight::before{content:"";width:10px;height:10px;border-top:2px solid #fff;border-right:2px solid #fff;opacity:.92}#slider .sliderBtnLeft::before{transform:rotate(-135deg);margin-left:3px}#slider .sliderBtnRight::before{transform:rotate(45deg);margin-right:3px}#slider:hover .sliderBtnLeft,#slider:hover .sliderBtnRight{opacity:.92}#slider .sliderBtnLeft:hover,#slider .sliderBtnRight:hover{transform:translateY(-50%) scale(1.08);background:rgba(90,80,200,.72);box-shadow:0 10px 30px rgba(90,80,200,.24)}#slider .sliderBtnLeft:active,#slider .sliderBtnRight:active{transform:translateY(-50%) scale(.94)}@media (max-width:768px){#slider .sliderBtnLeft,#slider .sliderBtnRight{width:40px;height:40px}#slider .sliderBtnLeft{left:10px}#slider .sliderBtnRight{right:10px}}@media (max-width:480px){#slider .sliderBtnLeft,#slider .sliderBtnRight{width:36px;height:36px;opacity:.88}#slider .sliderBtnLeft::before,#slider .sliderBtnRight::before{width:9px;height:9px}}
/* End */
/* /local/assets/css/homepage.css?177934561449962 */
/* /bitrix/templates/dresscodeV2/components/dresscode/slider/promoSlider/style.min.css?17789415945123 */
