/** Hero block */
.hero {
	padding-top: 28px;
	padding-bottom: 20px;
}

.hero-card {
	background: linear-gradient(90deg, #EAF5FB 0%, #FCEFF3 100%);
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(34, 34, 34, 0.08);
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 520px;
	padding: 42px 30px 42px 30px;
}

.hero-text {
	width: 38%;
	max-width: 430px;
}

.hero-text h1 {
	margin-top: 0;
	margin-bottom: 18px;
	font-size: 50px;
	line-height: 0.98;
	font-weight: 700;
	color: #222222;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.35;
	color: #333;
	max-width: 390px;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	max-width: 300px;
}

.hero-btn-primary,
.hero-btn-secondary {
	width: 100%;
	border-radius: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
}

.hero-btn-primary {
	background-color: #DF6B7C;
	border-color: #DF6B7C;
	color: #fff;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus,
.hero-btn-primary:active {
	background-color: #DF6B7C;
	border-color: #DF6B7C;
	color: #fff;
}

.hero-btn-secondary {
	background-color: #fff;
	border-color: #fff;
	color: #222;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus,
.hero-btn-secondary:active {
	background-color: #fff;
	border-color: #fff;
	color: #222;
}

.hero-note {
	font-size: 10px;
	line-height: 1.35;
	color: #6b6b6b;
}

.hero-image-desktop {
	width: 56%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hero-image-desktop img {
	display: block;
	width: 100%;
	max-width: 760px;
	height: auto;
}

.hero-image-mobile {
	display: none;
}

@media (max-width : 767px) {
	.hero {
		padding-top: 0;
		padding-bottom: 14px;
	}

	.hero .container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.hero-card {
		border-radius: 0 0 34px 34px;
		box-shadow: none;
	}

	.hero-content {
		min-height: auto;
		padding: 0 0 28px;
		flex-direction: column;
	}

	.hero-image-desktop {
		display: none;
	}

	.hero-image-mobile {
		display: block;
		width: 100%;
		padding: 18px 18px 0;
	}

	.hero-image-mobile img {
		display: block;
		width: 100%;
		height: auto;
	}

	.hero-text {
		width: 100%;
		max-width: none;
		padding: 12px 20px 0;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 34px;
		line-height: 1.02;
		margin-bottom: 16px;
		letter-spacing: -0.02em;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 1.35;
		margin-bottom: 18px;
		max-width: none;
	}

	.hero-buttons {
		max-width: none;
		margin-bottom: 16px;
	}

	.hero-note {
		text-align: center;
		font-size: 10px;
		padding: 0 10px;
	}
}

@media (min-width : 768px) and (max-width : 1199px) {
	.hero-content {
		min-height: 460px;
		padding: 34px 26px;
	}

	.hero-text h1 {
		font-size: 42px;
	}

	.hero-subtitle {
		font-size: 15px;
	}
}

/** Support section */
.support-section {
	padding-top: 22px;
	padding-bottom: 30px;
}

.support-title {
	margin-top: 0;
	margin-bottom: 20px;
	text-align: center;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 800;
	color: #222;
}

.support-logos {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 120px;
	max-width: 1200px;
}

.support-logos img {
	display: block;
	height: 50px;
	width: auto;
	max-width: 100%;
}

@media (max-width : 767px) {
	.support-section {
		padding-top: 14px;
		padding-bottom: 18px;
	}

	.support-title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 1.1;
		padding: 0 12px;
	}

	.support-logos {
		flex-direction: column;
		gap: 16px;
		max-width: none;
	}

	.support-logos img {
		height: auto;
		max-height: 44px;
	}
}

/** Audit section */
.audit-section {
	padding-top: 28px;
	padding-bottom: 54px;
}

.audit-title {
	margin-top: 0;
	margin-bottom: 34px;
	text-align: center;
	font-size: 32px;
	line-height: 1.12;
	font-weight: 800;
	color: #222;
}

.audit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 20px;
	align-items: stretch;
}

.audit-card {
	background-color: #fff;
	border-radius: 28px;
	padding: 24px 28px;
	min-height: 248px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.audit-card h3 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	color: #222;
}

.audit-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #555;
}

.audit-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.audit-card-head img {
	display: block;
	width: 74px;
	height: 74px;
	flex-shrink: 0;
	object-fit: contain;
}

.audit-card-psycho {
	grid-column: 3;
	grid-row: 1 / span 2;
	background: #fff;
}

.audit-card-psycho .audit-card-head-column {
	display: block;
	margin-bottom: 16px;
}

.audit-card-psycho p {
	margin-bottom: 16px;
}

.audit-psycho-image {
	margin-top: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-top: 6px;
}

.audit-psycho-image img {
	display: block;
	width: 100%;
	max-width: 550px;
	height: auto;
}

@media (max-width : 991px) {
	.audit-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.audit-card-psycho {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width : 767px) {
	.audit-section {
		padding-top: 24px;
		padding-bottom: 30px;
	}

	.audit-title {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 24px;
		padding: 0 10px;
	}

	.audit-grid {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.audit-card {
		min-height: auto;
		padding: 20px 18px;
		border-radius: 22px;
	}

	.audit-card h3 {
		font-size: 18px;
		line-height: 1.2;
	}

	.audit-card p {
		font-size: 15px;
		line-height: 1.35;
		margin-top: 16px;
	}

	.audit-card-head img {
		width: 54px;
		height: 54px;
	}

	.audit-card-psycho {
		order: 5;
		padding-bottom: 0;
		overflow: hidden;
	}

	.audit-psycho-image {
		padding-top: 14px;
	}

	.audit-psycho-image img {
		max-width: 180px;
	}
}

/** Roles section */
.roles-section {
	padding-top: 18px;
	padding-bottom: 42px;
}

.roles-card {
	max-width: 1120px;
	margin: 0 auto;
	padding: 34px 44px 32px;
	border-radius: 36px;
	background: linear-gradient(90deg, #FDF0F4 0%, #E7F6FF 100%);
	box-shadow: 0 14px 34px rgba(34, 34, 34, 0.06);
}

.roles-title {
	margin-top: 0;
	margin-bottom: 26px;
	text-align: center;
	font-size: 32px;
	line-height: 1.15;
	font-weight: 800;
	color: #222;
}

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

.role-item {
	display: block;
	padding: 0;
	border-radius: 24px;
	overflow: hidden;
	text-decoration: none;
	min-height: 390px;
	position: relative;
}

.roles-grid .role-item:nth-child(1),
.roles-grid .role-item:nth-child(3) {
	background: linear-gradient(45deg, #00A7FF 0%, #FFFFFF 48%, #DF6B7C 100%);
}

.roles-grid .role-item:nth-child(2) {
	background: linear-gradient(45deg, #DF6B7C 0%, #FFFFFF 48%, #00A7FF 100%);
}

.role-item:hover,
.role-item:focus {
	text-decoration: none;
}

.role-item img {
	display: block;
	width: 100%;
	height: 255px;
	object-fit: contain;
	object-position: center top;
}

.role-item-bottom {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.role-item-title {
	max-width: 170px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	color: #fff;
}

.role-arrow {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	font-size: 0;
}

.role-arrow::before {
	content: "→";
	font-size: 24px;
	line-height: 1;
	color: #DF6B7C;
	position: relative;
	top: -1px;
}

@media (max-width : 767px) {
	.roles-section {
		padding-top: 8px;
		padding-bottom: 28px;
	}

	.roles-card {
		padding: 20px 16px 16px;
		border-radius: 26px;
		background: linear-gradient(180deg, #FDF0F4 0%, #E7F6FF 100%);
		box-shadow: 0 10px 24px rgba(34, 34, 34, 0.05);
	}

	.roles-title {
		font-size: 28px;
		line-height: 1.12;
		margin-bottom: 18px;
	}

	.roles-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.role-item {
		min-height: 320px;
		border-radius: 22px;
	}

	.role-item img {
		height: 225px;
	}

	.role-item-bottom {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.role-item-title {
		font-size: 17px;
		line-height: 1.25;
		max-width: 180px;
	}

	.role-arrow {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}
}

/** Standards section */
.standards-section {
	padding-top: 8px;
	padding-bottom: 52px;
}

.standards-title {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
	font-size: 32px;
	line-height: 1.15;
	font-weight: 800;
	color: #222;
}

.standards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 26px;
}

.standards-card {
	background-color: #fff;
	border-radius: 28px;
	padding: 24px 24px 22px;
	min-height: 200px;
}

.standards-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.standards-card-head h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	color: #222;
}

.standards-card-head img {
	display: block;
	width: 62px;
	height: 62px;
	object-fit: contain;
	flex-shrink: 0;
}

.standards-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #555;
}

.standards-buttons {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.standards-buttons li {
	width: 320px;
}

.standards-buttons .btn {
	width: 100%;
	border-radius: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
}

.hero-btn-outline {
	background-color: transparent;
	border-color: #DF6B7C;
	color: #222;
}

.hero-btn-outline:hover,
.hero-btn-outline:focus,
.hero-btn-outline:active {
	background-color: transparent;
	border-color: #DF6B7C;
	color: #222;
}

@media (max-width : 767px) {
	.standards-section {
		padding-top: 6px;
		padding-bottom: 30px;
	}

	.standards-title {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 20px;
		padding: 0 8px;
	}

	.standards-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 20px;
	}

	.standards-card {
		min-height: auto;
		padding: 20px 18px;
		border-radius: 22px;
	}

	.standards-card-head {
		margin-bottom: 14px;
	}

	.standards-card-head h3 {
		font-size: 18px;
		line-height: 1.2;
	}

	.standards-card-head img {
		width: 54px;
		height: 54px;
	}

	.standards-card p {
		font-size: 15px;
		line-height: 1.35;
	}

	.standards-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.standards-buttons li {
		width: 100%;
	}
}

/** Qualification accordion */
.qualification-section {
	padding-top: 8px;
	padding-bottom: 42px;
}

.qualification-accordion {
	background-color: #fff;
	border-radius: 28px;
	overflow: hidden;
}

.qualification-toggle {
	width: 100%;
	border: 0;
	background: #fff;
	padding: 28px 68px 28px 28px;
	position: relative;
	text-align: left;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 800;
	color: #222;
}

.qualification-toggle-icon {
	position: absolute;
	right: 28px;
	top: 50%;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-right: 2px solid #222;
	border-bottom: 2px solid #222;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.qualification-accordion.is-open .qualification-toggle-icon {
	transform: rotate(-135deg);
	margin-top: -2px;
}

.qualification-content {
	display: none;
	padding: 0 28px 28px;
}

.qualification-accordion.is-open .qualification-content {
	display: block;
}

.qualification-inner {
	border-top: 0;
	padding-top: 0;
}

.qualification-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 26px;
}

.qualification-bottom {
	display: block;
}

.qualification-point {
	position: relative;
	padding-left: 22px;
}

.qualification-point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 6px;
	border-left: 2px solid #DF6B7C;
	border-bottom: 2px solid #DF6B7C;
	transform: rotate(-45deg);
}

.qualification-point p {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #222;
}

.qualification-point-wide > p {
	margin-bottom: 14px;
}

.qualification-lists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.qualification-lists ul {
	margin: 0;
	padding-left: 18px;
}

.qualification-lists li {
	font-size: 16px;
	line-height: 1.35;
	color: #555;
}

/** Experts section */
.experts-section {
	padding-top: 6px;
	padding-bottom: 48px;
}

.experts-title {
	margin: 0 0 28px;
	text-align: center;
	font-size: 32px;
	line-height: 1.15;
	font-weight: 800;
	color: #222;
}

.experts-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}

.expert-card {
	background-color: #fff;
	border-radius: 24px;
	padding: 22px 20px 18px;
	min-height: 188px;
}

.expert-card:nth-child(1),
.expert-card:nth-child(2),
.expert-card:nth-child(3) {
	grid-column: span 2;
}

.expert-card:nth-child(4) {
	grid-column: 2 / span 2;
}

.expert-card:nth-child(5) {
	grid-column: 4 / span 2;
}

.expert-logo {
	display: block;
	height: 42px;
	width: auto;
	max-width: 100%;
	margin-bottom: 18px;
}

.expert-card h3 {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 800;
	color: #222;
}

.expert-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	color: #666;
}

@media (max-width : 767px) {
	.experts-section {
		padding-top: 0;
		padding-bottom: 30px;
	}

	.experts-title {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 22px;
	}

	.experts-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		max-width: none;
	}

	.expert-card,
	.expert-card:nth-child(1),
	.expert-card:nth-child(2),
	.expert-card:nth-child(3),
	.expert-card:nth-child(4),
	.expert-card:nth-child(5) {
		grid-column: auto;
		min-height: auto;
		border-radius: 22px;
		padding: 20px 18px 18px;
	}

	.expert-logo {
		height: 36px;
		margin-bottom: 16px;
	}

	.expert-card h3 {
		font-size: 18px;
		line-height: 1.2;
		margin-bottom: 10px;
	}

	.expert-card p {
		font-size: 16px;
		line-height: 1.3;
	}
}


/** Official service section */
.official-service-section {
	padding-top: 10px;
	padding-bottom: 52px;
}

.official-service-card {
	max-width: 1120px;
	margin: 0 auto;
	border-radius: 40px;
	overflow: hidden;
	background: linear-gradient(90deg, #FDF0F4 0%, #DDF3FF 100%);
	box-shadow: 0 14px 34px rgba(34, 34, 34, 0.06);
}

.official-service-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 34px 40px;
	min-height: 330px;
}

.official-service-text {
	width: 52%;
	max-width: 520px;
}

.official-service-text h2 {
	margin: 0 0 18px;
	font-size: 32px;
	line-height: 1.12;
	font-weight: 800;
	color: #222;
}

.official-service-text p {
	margin: 0 0 26px;
	font-size: 16px;
	line-height: 1.45;
	color: #555;
}

.official-service-btn {
	max-width: 340px;
}

.official-service-image {
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.official-service-image img {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	transform-origin: center center;
}

@media (max-width : 767px) {
	.official-service-section {
		padding-top: 4px;
		padding-bottom: 34px;
	}

	.official-service-card {
		border-radius: 28px;
	}

	.official-service-content {
		flex-direction: column;
		align-items: stretch;
		padding: 24px 22px 26px;
		min-height: auto;
	}

	.official-service-text {
		width: 100%;
		max-width: none;
		order: 1;
	}

	.official-service-text h2 {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 18px;
	}

	.official-service-text p {
		font-size: 16px;
		line-height: 1.45;
		margin-bottom: 18px;
	}

	.official-service-image {
		order: 2;
		width: 100%;
		margin: 4px 0 18px;
	}

	.official-service-image img {
		max-width: 500px;
		margin: 0 auto;
	}

	.official-service-btn {
		order: 3;
		max-width: none;
		width: 100%;
	}
}

/** Agencies section */
.agencies-section {
	padding-top: 6px;
	padding-bottom: 56px;
	background-color: #FEF7F8;
}

.agencies-title {
	max-width: 900px;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 32px;
	line-height: 1.12;
	font-weight: 800;
	color: #222;
}

.agencies-section .flex-v-blocks {
	gap: 16px;
}

.agencies-section .flex-v-block {
	margin-top: 0;
}

.agencies-section .flex-h-blocks {
	gap: 16px;
	justify-content: stretch;
}

.agencies-section .flex-h-blocks > .flex-h-block {
	margin-left: 0;
}

.agency-card {
	border-radius: 28px;
	padding: 26px 28px 24px;
	background-color: #fff;
	min-height: 250px;
	align-items: flex-start;
}

.agency-card .agency-image {
	height: 42px;
	width: auto;
	max-width: 180px;
	margin-bottom: 20px;
}

.agency-card .h4,
.agency-card .h4 a {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 800;
	color: #222;
}

.agency-card .text-muted {
	font-size: 14px;
	line-height: 1.3;
	color: #999;
	margin-bottom: 10px !important;
}

.agency-card > p:last-child {
	font-size: 16px;
	line-height: 1.45;
	color: #555;
}

@media (max-width : 767px) {
	.agencies-section {
		padding-top: 0;
		padding-bottom: 34px;
	}

	.agencies-title {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 22px;
		padding: 0 8px;
	}

	.agencies-section .flex-h-blocks {
		display: block;
	}

	.agencies-section .flex-h-blocks > .flex-h-block {
		margin-top: 14px;
	}

	.agencies-section .flex-h-blocks > .flex-h-block:first-child {
		margin-top: 0;
	}

	.agency-card {
		min-height: auto;
		padding: 20px 18px 18px;
		border-radius: 22px;
	}

	.agency-card .agency-image {
		height: 34px;
		max-width: 160px;
		margin-bottom: 16px;
	}

	.agency-card .h4,
	.agency-card .h4 a {
		font-size: 17px;
	}

	.agency-card > p:last-child {
		font-size: 15px;
		line-height: 1.4;
	}
}


/** Agency image */
.icon-up .agency-image {
	width: auto;
	max-width: 100%;
	height: 32px;
}

.image-block {
	display: flex;
	align-content: space-between;
	justify-content: stretch;
}

.image-block-left {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

.image-block-right {
	margin-left: 40px;
	flex-shrink: 0;
}

.image-block-right img {
	width: auto;
	max-width: 100%;
	height: 350px;
	border-radius: 16px;
}

@media (max-width : 767px) {
	.image-block {
		display: flex;
		flex-direction: column;
	}

	.image-block-right {
		margin-left: 0px;
		margin-top: 40px;
		align-self: center;
	}
}
.official-service-button-wrap {
	margin: 0;
}

@media (min-width: 768px) {
	.official-service-content {
		display: grid;
		grid-template-columns: minmax(0, 520px) minmax(280px, 1fr);
		grid-template-areas:
			"text image"
			"button image";
		align-items: center;
		column-gap: 24px;
		row-gap: 20px;
	}

	.official-service-text {
		grid-area: text;
		width: 100%;
		max-width: 520px;
	}

	.official-service-image {
		grid-area: image;
		width: 100%;
	}

	.official-service-button-wrap {
		grid-area: button;
		width: 100%;
		max-width: 340px;
	}
}

@media (max-width: 767px) {
	.official-service-content {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 24px 22px 26px;
		min-height: auto;
	}

	.official-service-text {
		order: 1;
		width: 100%;
		max-width: none;
	}

	.official-service-image {
		order: 2;
		width: 100%;
		margin: 8px 0 18px;
		display: flex;
		justify-content: center;
	}

	.official-service-image img {
		max-width: 240px;
		width: 100%;
		height: auto;
	}

	.official-service-button-wrap {
		order: 3;
		width: 100%;
	}

	.official-service-btn {
		max-width: none;
		width: 100%;
	}
}
