:root {
	--header-height: 70px;
	--bg-color: #fff7f0;
	--bg-color-light: #ffe8d9;
	--bg-dark: #2e1f1f;
	--accent-color: #ff7a59;
	--text-color: #3d2a2a;
	--transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--bg-gradient-dark: linear-gradient(135deg, #331e36 0%, #4f2e49 50%, #6b3a62 100%);

	--color-primary: #ffffff;
	--color-accent: #d14d72;
	--color-light: #fff3f6;
	--color-text: #2e1f2e;
	--border-radius: 1rem;
	--shadow: 0 20px 40px rgba(209, 77, 114, 0.15);

	--font-main: 'Inter', sans-serif;
	--font-second: 'Merriweather', sans-serif;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
	text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-second);
}

ul,
ul li {
	list-style: none;
	font-family: var(--font-second);
}

img {
	vertical-align: top;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type='submit'] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
	background-color: var(--bg-color-light);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-main);
}

.wrapper {
	min-height: 100vh; /* минимум высота экрана */
	display: flex;
	flex-direction: column;
	padding-top: 70px; /* чтобы контент не ушел под фиксированный header */
}

/* main занимает всё свободное пространство */
.main {
	flex: 1 0 auto; /* растягиваем main, чтобы footer ушел вниз */
	padding: 20px 0;
}

.container {
	max-width: 1280px;
	padding: 0 10px;
	margin: 0 auto;
	height: 100%;
}

/* HEADER */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: var(--bg-color);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header__inner {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
	height: 70px;
}
/* Логотип */
.logo span {
	font-size: 24px;
	font-weight: bold;
	color: var(--accent-color);
	text-transform: uppercase;
}

/* Навигация */
.nav {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-link {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	position: relative;
	transition: var(--transition);
	display: block;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0%;
	height: 2px;
	background: var(--accent-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* Бургер меню */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--text-color);
	border-radius: 3px;
	transition: var(--transition);
}

/* Адаптивность */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-list {
		position: absolute;
		top: var(--header-height);
		right: 0;
		background-color: var(--bg-color);
		flex-direction: column;
		width: 100%;
		padding: 20px;
		gap: 20px;
		transform: translateX(100%);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
	}

	.nav-list.active {
		transform: translateX(0%);
		opacity: 1;
		pointer-events: all;
	}
}

/* Footer */

/* Футер */
.footer {
	background-color: #0a0f1a;
	color: #fff;
	flex-shrink: 0; /* не сжимается */
}

.footer .container {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.footer-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #82e5a7;
}

.footer-bottom {
	margin-top: 10px;
	font-size: 14px;
	color: #aaa;
	text-align: center;
}

@media (max-width: 768px) {
	.footer .container {
		display: flex;
		flex-direction: column;
	}
}
.faq-section {
	background: var(--color-accent);
	padding: 20px 2px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	border-radius: 10px;
	margin-bottom: 10px;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
	background: var(--bg-color);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 40px 50px;
	transition: all 0.3s ease;
}

.faq-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: #2c3e50;
}

.faq-item + .faq-item {
	margin-top: 20px;
}

.faq-question {
	background: var(--bg-dark);
	color: var(--color-light);
	border: 1px solid #dce1e7;
	border-radius: 8px;
	padding: 18px 24px;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.25s ease;
	width: 100%;
}

.faq-question:hover {
	background: var(--bg-color-light);
	color: var(--color-text);
}

.faq-question[aria-expanded='true'] {
	background: var(--bg-color-light);
	color: var(--color-text);
}

.faq-icon {
	font-size: 22px;
	color: #4a6fa1;
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded='true'] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	margin-top: 12px;
	padding: 14px 20px;
	background: #fafbfc;
	border-left: 3px solid #4a6fa1;
	color: #444;
	font-size: 16px;
	line-height: 1.6;
	border-radius: 6px;
}

.faq-summary {
	margin-top: 50px;
	font-size: 16.5px;
	text-align: center;
	color: #555;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.faq-footer {
	margin-top: 50px;
	text-align: center;
	font-size: 15px;
	color: #777;
}

.faq-link {
	color: #4a6fa1;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.2s ease;
}

.faq-link:hover {
	color: #2c3e50;
}
.faq-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.site-nav {
	text-align: center;
	padding: 20px;
	background-color: #111;
	color: #fff;
	border-radius: 15px;
}
.nav-list-faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.site-nav .nav-list-faq a {
	color: #fff;
}

.flex-end {
	display: flex;
	justify-content: end;
	align-items: center;
	font-size: 16px;
	margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.faq-section {
		padding: 2px;
	}
	.faq-container {
		padding: 30px 10px;
	}

	.faq-title {
		font-size: 26px;
	}

	.faq-question {
		font-size: 16px;
		padding: 14px 18px;
	}

	.faq-answer {
		font-size: 15px;
		padding: 12px 16px;
	}

	.faq-summary {
		font-size: 15.5px;
	}
	.flex-end {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.faq-question {
		flex-direction: column;
		align-items: flex-start;
	}

	.faq-icon {
		align-self: flex-end;
		margin-top: 8px;
	}

	.faq-title {
		font-size: 22px;
	}

	.faq-footer {
		font-size: 14px;
	}
}

/* PRIVaCY */
.page-header {
	background: #111827;
	color: #f9fafb;
	padding: 3.5rem 0 1rem;
	text-align: center;
}

.page-title {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin: 0;
}

/* Основной блок */
.privacy-wrapper {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 2rem;
	padding: 2.5rem 0;
}

.privacy-nav {
	background-color: #1f2937;
	padding: 1.75rem;
	padding-top: 70px;
	border-radius: 0.75rem;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 24px rgba(0, 0, 0, 0.12);
	position: sticky;
	top: 1rem;
	height: fit-content;
	transition: var(--transition);
}

.privacy-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.privacy-nav-list li + li {
	margin-top: 1rem;
}

.privacy-nav-list a {
	color: #e5e7eb;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.privacy-nav-list a:hover {
	color: #38bdf8;
}

/* Контент */
.privacy-document {
	background: #f9fafb;
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	color: #1e293b;
	font-size: 1rem;
	line-height: 1.65;
}

.privacy-document section + section {
	margin-top: 2.5rem;
}

section[id] {
	scroll-margin-top: 80px;
}

.section-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #0f172a;
}

.privacy-document h3 {
	margin-top: 1.25rem;
	color: #0891b2;
	font-size: 1.125rem;
}

/* Списки */
.privacy-document ul {
	list-style: disc;
	margin: 1rem 0 1rem 1.25rem;
	padding-left: 0;
}

/* Ссылки */
a.privacy-link {
	color: #0ea5e9;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: var(--transition);
}

/* Контактный блок */
.contact-info {
	background: #f1f5f9;
	padding: 1.25rem;
	border-radius: 0.75rem;
	margin-top: 1rem;
	color: #334155;
	font-size: 0.95rem;
}

/* Адаптивность */
@media (max-width: 992px) {
	.privacy-wrapper {
		grid-template-columns: 1fr;
	}

	.privacy-nav {
		display: none;
	}

	.privacy-document {
		padding: 1.5rem;
	}
}
/* Enhanced Contacts Section */

.business-contact {
	background: var(--bg-gradient-dark);
	padding: 3rem 2rem;
	font-family: 'Inter', sans-serif;
	color: var(--color-primary);
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.business-contact::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
	opacity: 0.1;
	pointer-events: none;
	transform: rotate(30deg);
}

.business-contact__container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.business-contact__left {
	flex: 1 1 45%;
	text-align: center;
}

.business-contact__image {
	width: 100%;
	max-width: 400px;
	border-radius: 1.25rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	transition: transform 0.4s ease;
}
.business-contact__image:hover {
	transform: scale(1.05);
}

.business-contact__right {
	flex: 1 1 50%;
}

.business-contact__title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-primary);
	margin-bottom: 1rem;
	line-height: 1.2;
	background: linear-gradient(90deg, var(--accent-color), #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.business-contact__text {
	font-size: 1.2rem;
	color: var(--color-primary);
	margin-bottom: 2rem;
	line-height: 1.75;
	max-width: 600px;
}

.business-contact__info h3,
.business-contact__socials h3 {
	font-size: 1.3rem;
	color: var(--accent-color);
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.business-contact__info p,
.business-contact__learn-more {
	font-size: 1.05rem;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.business-contact__info a,
.business-contact__learn-more a,
.business-contact__socials a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: all 0.25s ease;
}

.business-contact__info a:hover,
.business-contact__learn-more a:hover,
.business-contact__socials a:hover {
	border-color: var(--accent-color);
	color: #93c5fd;
}

.business-contact__socials ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin: 1rem 0;
}

.business-contact__socials li a {
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: transform 0.3s ease;
}

.business-contact__socials li a:hover {
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.business-contact {
		padding: 2rem;
	}
	.business-contact__container {
		flex-direction: column;
		text-align: center;
	}

	.business-contact__title {
		font-size: 22px;
	}

	.business-contact__text {
		font-size: 1.05rem;
	}

	.business-contact__image {
		max-width: 90%;
		margin: 0 auto;
	}
	.business-contact__socials ul {
		justify-content: center;
		margin: 10px 0;
	}
}

.link-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.link-page {
	background-color: var(--bg-dark);
	border-radius: 12px;
	padding: 15px;
	display: inline-block;
	color: var(--accent-color);
	transition: var(--transition);
}
.link-page:hover {
	color: var(--color-light);
	transition: var(--transition);
}

/* SECTIONS */
section {
	background: #fff;
	border-radius: 1.25rem;
	box-shadow: 0 12px 30px rgba(209, 77, 114, 0.15);
	margin-bottom: 3.5rem;
	padding: 1.5rem 1.25rem;
	transition: box-shadow 0.35s ease;
	cursor: default;
}
section:hover {
	box-shadow: 0 20px 45px rgba(209, 77, 114, 0.3);
}
.safe-architecture__title,
.safe-standards__title,
.wallet-innovation__title {
	color: #d14d72;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: color 0.3s ease;
}

section:hover > h1,
section:hover > h2 {
	color: #a02a56;
}

/* H1 */
.safe-architecture__title {
	font-size: 2.7rem;
	line-height: 1.1;
}

/* H2 */
.safe-standards__title,
.wallet-innovation__title {
	font-size: 2.3rem;
}

/* H3 */
.safe-standards__subtitle,
.wallet-innovation__subtitle {
	font-size: 1.7rem;
	margin-top: 2.3rem;
	margin-bottom: 1rem;
	color: #ba5d82;
	font-weight: 600;
	position: relative;
}

/* Underline decoration for H3 with pseudo-element */
.safe-standards__subtitle::after,
.wallet-innovation__subtitle::after {
	content: '';
	position: absolute;
	bottom: -0.25rem;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #d14d72, #a02a56);
	border-radius: 2px;
}

/* IMAGE */
.safe-architecture__image {
	display: block;
	width: 280px;
	max-width: 100%;
	margin: 1.8rem 0;
	border-radius: 1.5rem;
	box-shadow: 0 10px 25px rgba(209, 77, 114, 0.3);
	transition: transform 0.3s ease;
}

.safe-architecture__image:hover {
	transform: scale(1.05);
}

/* TEXT */
.safe-architecture__description,
.safe-standards__text,
.wallet-innovation__text {
	font-size: 1.05rem;
	color: #5b455b;
	max-width: 700px;
	margin-bottom: 1.15rem;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

/* ARTICLE BLOCKS inside wallet-innovation */
.wallet-innovation__block {
	border-left: 5px solid #d14d72;
	padding-left: 1.25rem;
	margin-top: 2rem;
	background: #fff0f4;
	border-radius: 0.75rem;
	box-shadow: 0 8px 18px rgba(209, 77, 114, 0.12);
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.wallet-innovation__block:hover {
	box-shadow: 0 15px 35px rgba(209, 77, 114, 0.25);
	background-color: #fde7ef;
}

/* ARTICLE TITLE */
.wallet-innovation__subtitle {
	margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 720px) {
	.safe-architecture__title {
		font-size: 1.6rem;
	}
	.safe-standards__title,
	.wallet-innovation__title {
		font-size: 1.45rem;
	}
	.safe-standards__subtitle,
	.wallet-innovation__subtitle {
		font-size: 1.1rem;
	}
	.safe-architecture__image {
		width: 100%;
		margin: 1.2rem 0;
	}
}
/* SAFEPA NUMBER */
.safepal-number {
	background-color: #f5f7ff;
	padding: 3rem 2rem;
	border-radius: 2rem;
	margin-bottom: 2rem;
}
.safepal-number__title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #27357e;
}
.safepal-number__block {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}
.safepal-number__content {
	flex: 1;
	min-width: 280px;
}
.safepal-number__subtitle {
	font-size: 1.75rem;
	color: #3b4070;
	margin-bottom: 1rem;
}
.safepal-number__text {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}
.safepal-number__image img {
	max-width: 100%;
	border-radius: 1.2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ALTERNATE BLOCK STYLE */
.safepal-number__block--alt {
	background-color: #eaf0ff;
	padding: 2rem;
	border-radius: 1.5rem;
}

/* SAFEPAL WALLET */
.safepal-wallet {
	background-color: #fff5e6;
	padding: 3rem 2rem;
	border-radius: 2rem;
}
.safepal-wallet__title {
	font-size: 2.5rem;
	color: #7a4300;
	margin-bottom: 2rem;
}
.safepal-wallet__block {
	margin-bottom: 2rem;
}
.safepal-wallet__subtitle {
	font-size: 1.7rem;
	color: #a65c00;
	margin-bottom: 1rem;
}
.safepal-wallet__text {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}
.safepal-wallet__block--alt {
	background-color: #ffe5ba;
	padding: 2rem;
	border-radius: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 720px) {
	.safepal-number__title,
	.safepal-wallet__title {
		font-size: 2.1rem;
	}
	.safepal-number__subtitle,
	.safepal-wallet__subtitle {
		font-size: 1.45rem;
	}
	.safepal-number__block,
	.safepal-wallet__block {
		flex-direction: column;
	}
}
/* Общие стили для контейнеров */
.safepal-contact,
.safepal-threat-detection {
	padding: 60px 20px;
	background: #f9f9f9;
}

.safepal-contact__container,
.safepal-threat-detection__container {
	max-width: 1200px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	padding: 40px;
	transition: transform 0.3s ease;
}

.safepal-contact__container:hover,
.safepal-threat-detection__container:hover {
	transform: translateY(-5px);
}

/* Заголовки */
.safepal-contact__title,
.safepal-threat-detection__title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1d1d1f;
	position: relative;
}

.safepal-contact__title::after,
.safepal-threat-detection__title::after {
	content: '';
	width: 60px;
	height: 4px;
	background: #00c9a7;
	display: block;
	margin-top: 10px;
	border-radius: 2px;
}

/* Контент */
.safepal-contact__content,
.safepal-threat-detection__content {
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

/* Изображения */
.safepal-contact__image {
	flex: 1 1 300px;
	max-width: 400px;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Текстовый блок */
.safepal-contact__text,
.safepal-threat-detection__text {
	flex: 1 1 600px;
}

/* Подзаголовки */
.safepal-contact__subtitle,
.safepal-threat-detection__subtitle {
	font-size: 22px;
	font-weight: 600;
	color: #0e4e48;
	margin-top: 30px;
	margin-bottom: 10px;
}

/* Параграфы */
.safepal-contact__text p,
.safepal-threat-detection__text p {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 16px;
}

/* Адаптивность */
@media (max-width: 992px) {
	.safepal-contact__content,
	.safepal-threat-detection__content {
		flex-direction: column;
		gap: 30px;
	}

	.safepal-contact__image {
		max-width: 100%;
		width: 100%;
	}
}
.safepal-firmware {
	padding: 60px 20px;
	background: #f5f5f5;
}

.safepal-firmware__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.safepal-firmware__content {
	flex: 1 1 600px;
}

.safepal-firmware__image {
	flex: 1 1 400px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.safepal-firmware__title {
	font-size: 32px;
	font-weight: 700;
	color: #1c1c1e;
	margin-bottom: 30px;
	position: relative;
}

.safepal-firmware__title::after {
	content: '';
	width: 60px;
	height: 4px;
	background-color: #00c9a7;
	display: block;
	border-radius: 2px;
	margin-top: 10px;
}

.safepal-firmware__subtitle {
	font-size: 22px;
	font-weight: 600;
	color: #0e4e48;
	margin-top: 30px;
	margin-bottom: 10px;
}

.safepal-firmware__text {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 16px;
}

@media (max-width: 992px) {
	.safepal-firmware__wrapper {
		flex-direction: column;
	}

	.safepal-firmware__image {
		width: 100%;
	}
}
.safepal-enterprise {
	padding: 60px 20px;
	background: #f0f8f6;
}

.safepal-enterprise__wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.safepal-enterprise__content {
	flex: 1 1 600px;
}

.safepal-enterprise__image {
	flex: 1 1 400px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.safepal-enterprise__title {
	font-size: 32px;
	font-weight: 700;
	color: #1c1c1e;
	margin-bottom: 30px;
	position: relative;
}

.safepal-enterprise__title::after {
	content: '';
	width: 60px;
	height: 4px;
	background-color: #00b894;
	display: block;
	border-radius: 2px;
	margin-top: 10px;
}

.safepal-enterprise__subtitle {
	font-size: 22px;
	font-weight: 600;
	color: #0a4f45;
	margin-top: 30px;
	margin-bottom: 10px;
}

.safepal-enterprise__text {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 16px;
}

@media (max-width: 992px) {
	.safepal-enterprise__wrapper {
		flex-direction: column;
	}

	.safepal-enterprise__image {
		width: 100%;
	}
}
