* {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-style: normal;
	line-height: normal;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
}

*:focus {
	outline: none;
}

/* ===== Универсальный стиль скролла ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
	width: 6px; /* ширина полосы */
}

::-webkit-scrollbar-thumb {
	background-color: #D9D9D9; /* цвет ползунка */
	border-radius: 40px;
}


::-webkit-scrollbar-track {
	background: transparent; /* фон дорожки */
}

/* убираем стрелки вверх/вниз */
::-webkit-scrollbar-button {
	display: none;
	height: 0;
	background: transparent;
}


html,
body {
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
}

main {
	flex: auto;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

b {
	font-weight: 500;
}

img {
	width: 100%;
	height: auto;
}

input,
textarea,
select {
	vertical-align: middle;
	padding: 0;
	box-sizing: border-box;
	resize: none;
	
	border: 1px solid transparent;
	color: #000c49;
	background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #000c49;
	font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
	color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-background-clip: text;
	transition: background-color 5000s ease-in-out 0s;
	box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
	transition: opacity 0.4s;
}

.hover:hover {
	opacity: 0.5;
}

.container {
	width: 1400px;
	margin: 0 auto;
}

.mask {
	display: none;
}

:root {
	--dark-title: #000;
	--dark-body: #6c6f73;
	--ff-cab: "Cabinet Grotesk", sans-serif;
	--ff-sans: "Public Sans", sans-serif;
}

/* HEADER */

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo {
	width: 240px;
}

.burger {
	width: 32px;
}

.mobile__menu {
	position: absolute;
	top: 116px;
	left: -100vw;
	transition: all 0.3s ease;
}

.header {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background-color: #fff;
	z-index: 100;
}

.mob-link {
	color: #000;
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	opacity: 0.8;
}

.mob-list {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 15px;
	flex-direction: column;
}

.active {
	left: 0;
}

.burger {
	display: none;
}

.nav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

.nav__list-item a {
	color: var(--dark-title);
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 22.4px */
	transition: all 0.3s ease;
}

.nav__list-item a:hover {
	opacity: 0.7;
}

.header__button {
	border-radius: 8px;
	border: 0.764px solid rgba(0, 0, 0, 0.1);
	background: var(--dark-title);
	padding: 16px 32px;
	color: #fff;
	text-align: center;
	font-feature-settings: "liga" off, "calt" off;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
	transition: all 0.3s ease;
}

.header__button:hover {
	opacity: 0.7;
}

/* HEADER */

/* HERO */

.hero__heading {
	color: var(--dark-title);
	text-align: center;
	
	/* H1 */
	font-family: var(--ff-cab);
	font-size: 102px;
	font-style: normal;
	font-weight: 700;
	line-height: 86%; /* 87.72px */
	letter-spacing: -2.04px;
}

.hero {
	background-image: url("../images/hero-bg.webp");
	background-position: top;
	background-repeat: no-repeat;
	padding: 96px 0 67px 0;
	background-size: cover;
}

.hero__subheading {
	color: var(--dark-body);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 25.2px */
	max-width: 776px;
}

.hero__text {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-direction: column;
}

.input__container h3,
.input__container .input-title {
	color: var(--dark-title);
	text-align: center;
	font-feature-settings: "liga" off, "calt" off;
	font-family: var(--ff-sans);
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 26.4px */
	letter-spacing: 0.44px;
}

.input__container p {
	color: var(--dark-body);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}

.input__container {
	position: relative;
	padding: 3px;
	width: 100%;
	border: 3px dashed #A855F7;
	border-radius: 30px;
	background: transparent;
}
.input__container {
    /* 1. Remove standard border */
    border: none;

    /* 2. Composite SVG Background 
       This is a sophisticated SVG that draws 5 things:
       1. The Main Gradient Rectangle with dashed lines (30px dash, 30px gap).
       2. Top-Left Corner: Solid Blue Arc (covers any gaps).
       3. Top-Right Corner: Solid Purple Arc.
       4. Bottom-Left Corner: Solid Blue Arc.
       5. Bottom-Right Corner: Solid Purple Arc.
    */
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3clinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3e%3cstop offset='0%25' stop-color='%230080FF'/%3e%3cstop offset='50%25' stop-color='%23FFFFFF'/%3e%3cstop offset='100%25' stop-color='%236C10FF'/%3e%3c/linearGradient%3e%3c/defs%3e%3c!-- 1. Main Dashed Gradient Rect --%3e%3crect x='1' y='1' width='calc(100%25 - 2px)' height='calc(100%25 - 2px)' fill='none' rx='24' ry='24' stroke='url(%23g)' stroke-width='2' stroke-dasharray='35%2c 30' stroke-linecap='round'/%3e%3c!-- 2. Top Left Cap (Blue) --%3e%3cpath d='M1 25 A24 24 0 0 1 25 1' stroke='%230080FF' stroke-width='2' fill='none' stroke-linecap='round'/%3e%3c!-- 3. Top Right Cap (Purple) --%3e%3csvg x='100%25' overflow='visible'%3e%3cpath d='M-25 1 A24 24 0 0 1 -1 25' stroke='%236C10FF' stroke-width='2' fill='none' stroke-linecap='round'/%3e%3c/svg%3e%3c!-- 4. Bottom Left Cap (Blue) --%3e%3csvg y='100%25' overflow='visible'%3e%3cpath d='M1 -25 A24 24 0 0 0 25 -1' stroke='%230080FF' stroke-width='2' fill='none' stroke-linecap='round'/%3e%3c/svg%3e%3c!-- 5. Bottom Right Cap (Purple) --%3e%3csvg x='100%25' y='100%25' overflow='visible'%3e%3cpath d='M-1 -25 A24 24 0 0 1 -25 -1' stroke='%236C10FF' stroke-width='2' fill='none' stroke-linecap='round'/%3e%3c/svg%3e%3c/svg%3e");
    
    background-repeat: no-repeat;
    background-position: center;

    /* 3. Container Layout */
    border-radius: 24px;
    background-color: #FFFFFF;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    
    /* Flex Center */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.input__container:hover {
    background-color: #F8FBFF;
    cursor: pointer;
}
.inner {
	position: relative;
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	padding: 90px 0;
	max-height: 440px;
	box-sizing: border-box;

	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}



.subtitle--input-container {
	color: var(--dark-title);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	margin-top: 50px;
	line-height: 140%; /* 16.8px */
}

/* HERO */

/* USAGE */

.usage__heading {
	color: var(--dark-title);
	text-align: center;
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
}

.usage__subtitle {
	color: var(--dark-body);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 25.2px */
	margin-top: 30px;
}

.usage__item > h3 {
	color: var(--dark-title);
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
}

.usage__item > p {
	color: var(--dark-body);
	
	/* Body 2 */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	max-width: 387px;
}

.usage__item > img {
	width: 52px;
	height: 52px;
	margin-bottom: 30px;
}

.usage__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-top: 42px;
}

.usage__item {
	display: flex;
	justify-content: start;
	align-items: start;
	flex-direction: column;
	gap: 10px;
	padding: 0 30px;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
}

.usage__item::after {
	position: absolute;
	content: " ";
	width: 1px;
	height: 28px;
	background: var(--dark-title);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.usage__container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

/* USAGE */

/* ADVANTAGES */

.advantages__heading {
	color: var(--dark-title);
	text-align: center;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 54px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
}

.advantages__container {
	margin-top: 240px;
}

.col1 li {
	width: 100%;
	padding: 10px 0 10px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	border-right: 1px solid rgba(0, 0, 0, 0.04);
	display: flex;
	justify-content: start;
	align-items: center;
	height: 58px;
}

.col1 ul {
	width: 240px;
}

.col2 ul {
	width: 645px;
}

.col2 li {
	padding: 10px 0 10px 20px;
	width: 100%;
	display: flex;
	justify-content: start;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	border-right: 1px solid rgba(0, 0, 0, 0.04);
	height: 58px;
}

.table {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	background-color: #fff;
}

.table__wrapper {
	border-radius: 20px;
	border: 1px solid #0080ff;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 14px 0 rgba(221, 221, 242, 0.45);
	backdrop-filter: blur(22px);
	padding: 20px;
	width: 925px;
	margin: 0 auto;
	margin-top: 60px;
}

.col1 li,
.col2 li:nth-child(1) {
	color: var(--dark-title);
	text-align: center;
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.col2 li {
	color: var(--dark-body);
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.advantages {
	padding-bottom: 211px;
	background: linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
}

/* ADVANTAGES */

/* CLIENTS */

.clients__subtitle {
	color: var(--dark-body);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	width: 679px;
	margin-bottom: 50px;
}

.clients__heading {
	color: var(--dark-title);
	text-align: center;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 54px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
}

.clients__container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}

.clients__list li {
	display: flex;
	justify-content: start;
	align-items: start;
	flex-direction: column;
	gap: 20px;
	position: relative;
	width: 358px;
	padding: 0 20px 20px 30px;
}

.clients__list li:not(:last-child) {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.clients {
	padding-bottom: 120px;
	background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.clients__list {
	display: flex;
	justify-content: center;
	gap: 0px;
	overflow-x: scroll;
	scrollbar-width: none; /* для Firefox */
	-ms-overflow-style: none; /* для IE и Edge */
	max-width: 100%;
}

.clients__img {
	margin-bottom: 60px;
	width: 150px;
	height: 150px;
}

.clients__svg {
	width: 21px;
	height: 21px;
	position: absolute;
	left: 3px;
	top: 250px;
}

.clients__list li h3 {
	color: var(--dark-title);
	font-family: var(--ff-cab);
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%; /* 30.8px */
}

.clients__list li p {
	color: var(--dark-body);
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
}

/* CLIENTS */

/* FEATURES */

.features {
	padding: 120px 0;
	background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.features__heading {
	color: var(--dark-title);
	text-align: center;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 54px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
}

.features__container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-direction: column;
}

.features__subtitle {
	color: var(--dark-body);
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 25.2px */
	margin-bottom: 50px;
}

.features__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.feature:nth-child(1), .feature:nth-child(2), .feature:nth-child(3) {
	border-right: 1px solid rgba(0, 0, 0, 0.10);
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.feature:nth-child(4) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.feature:nth-child(5), .feature:nth-child(6), .feature:nth-child(7) {
	border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.feature {
	padding: 40px 30px 60px 30px;
	display: flex;
	justify-content: start;
	align-items: start;
	flex-direction: column;
	gap: 10px;
	width: 351px;
	height: 340px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.feature:hover {
	background-color: #0080ff;
}

.feature:hover > p, .feature:hover > h3 {
	color: #fff
}

.feature:hover > svg > path {
	fill: #fff
}

.feature svg {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
}

.feature p {
	width: 290px;
	color: var(--dark-body);
	
	/* Body 2 */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
}

.feature h3 {
	color: var(--dark-title);
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
}

.row1,
.row2 {
	display: flex;
	justify-content: center;
	align-items: start;
}

.features__plus1,
.features__plus2,
.features__plus3 {
	position: absolute;
	width: 21px;
	height: 21px;
	top: 50%;
	transform: translate(-50%, -50%);
}

.features__plus1 {
	left: 50%;
}

.features__plus3 {
	left: 25%;
}

.features__plus2 {
	transform: translate(0, -50%);
}

.features__plus2 {
	right: 340px;
}

/* FEATURES */

/* CASES */

.cases-bg {
	width: 698px;
}

.case img {
	width: 32px;
}

.cases__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 75px;
}

.cases__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: fit-content;
}

.cases {
	padding: 64px 0 160px 0;
	background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.cases__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: start;
	align-items: start;
}

.case p {
	color: var(--dark-body);
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	max-width: 600px;
	padding-bottom: 60px;
}

.case:not(:nth-child(1)) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.case {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 10px;
}

.cases__heading {
	color: var(--dark-title);
	text-align: center;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
}

.bubble {
	border-radius: 76px;
	background: #F6F8FA;
	backdrop-filter: blur(22px);
	padding: 32px 60px;
	color: #000;
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
}

.cases--bubbles {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 75px;
}

/* CASES */


/*BLOGS*/

.blogs {
	background: linear-gradient(180deg, #FFF 0%, #F6F8FA 100%);
	padding-bottom: 162px;
}

.blog img {
	width: 419px;
	height: 314px;
}

.blogs__list {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 24px;
}

.blogs__heading {
	color: #000;
	text-align: center;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
	margin-bottom: 42px;
}

.blog-title {
	color: #000;
	font-family: var(--ff-sans);
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 36.4px */
	margin-top: 6px;
}

.blog-date {
	color: #6C6F73;
	
	/* Body 2 */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	justify-self: end;
}

.blog {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-direction: column;
	background-color: #fff;
	gap: 10px;
	padding: 16px;
	height: 500px;
	border-radius: 16px;
	cursor: pointer;
}

.blog-top {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

/*FAQ*/

.faq {
	padding: 120px 0;
	background: linear-gradient(180deg, #FFF 0%, #F6F8FA 100%);
}

.faq--item img {
	width: 24px;
	height: 24px;
}

.faq-top {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 25.2px */
	gap: 20px;
}

.faq--item {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	width: 100%;
	padding: 28px 20px;
	cursor: pointer;
}

.faq--item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.faq--item.active .faq-bottom {
	grid-template-rows: 1fr;
}

.faq-bottom {
	display: grid;
	grid-template-rows: 0fr;
	transition: all 0.3s ease;
	overflow: hidden;
}

.faq-bottom > div {
	min-height: 0;
	padding-left: 44px;
	color: #6C6F73;
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.faq--heading {
	color: #000;
	
	/* H2 */
	font-family: var(--ff-cab);
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 64px */
	letter-spacing: -1.28px;
	width: 567px;
}

.faq--subheading {
	color: #6C6F73;
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.faq--left {
	display: flex;
	flex-direction: column;
	gap: 30px
}

.minus {
	display: none;
}

.faq--item.active .minus {
	display: block;
}

.faq--item.active .plus {
	display: none;
}

.faq__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq--list {
	width: 687px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.10);
}


/*BLOGS*/

/*FOOTER*/

.footer {
	background-color: #000;
	padding: 40px 0;
}

.footer-img {
	width: 240px;
}

.footer--about {
	display: flex;
	gap: 30px;
	justify-content: start;
	align-items: start;
	flex-direction: column;
}

.footer--about > li {
	color: #fff;
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	opacity: 0.8;
	width: 347px;
}

.useful--heading {
	color: #fff;
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
	margin-bottom: 15px;
}

.footer--useful-item {
	color: #fff;
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	opacity: 0.8;
}

.footer--useful {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 15px;
	flex-direction: column;
}

.footer--top {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.social--list {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 16px;
}

.social--list a {
	padding: 8px;
	border-radius: 50%;
	background-color: #191919;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dropdown {
	position: relative;
	width: 200px;
}

.dropdown-btn {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dropdown-btn > span {
	color: #fff;
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
}

.arrow {
	transition: transform 0.3s ease;
}

.dropdown.open .arrow {
	transform: rotate(180deg);
}

.dropdown-list {
	position: absolute;
	top: calc(100% + 5px);
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	max-height: 120px; /* 3 пункта */
	overflow-y: auto;
	display: none;
	gap: 4px;
	z-index: 10;
	justify-content: start;
	align-items: start;
	flex-direction: column;
}

.social--heading {
	color: #fff;
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
	margin-bottom: 30px;
}

.footer--bottom p, .footer--bottom a {
	color: #fff;
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
	opacity: 0.6;
}

.footer--bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer--container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 64px;
}

.footer--texts {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

.dropdown.open .dropdown-list {
	display: flex;
}

.dropdown-item {
	padding: 10px 15px;
	cursor: pointer;
	transition: background 0.2s;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.40);
	width: 100%;
}


/* ===== Кастомный скролл ===== */
.dropdown-list::-webkit-scrollbar {
	width: 8px; /* ширина полосы прокрутки */
}

.dropdown-list::-webkit-scrollbar-track {
	background: transparent; /* фон дорожки */
}

/* 💣 Полностью убираем стрелки (верх/низ) */
.dropdown-list::-webkit-scrollbar-button:start:decrement,
.dropdown-list::-webkit-scrollbar-button:end:increment {
	display: none;
	height: 0;
	background: transparent;
}

.dropdown-list::-webkit-scrollbar-thumb {
	background-color: #ccc; /* цвет ползунка */
	border-radius: 10px; /* скругление */
	border: 2px solid white; /* небольшой отступ от контента */
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
	background-color: #999;
}

/* Firefox */
.dropdown-list {
	scrollbar-width: thin;
	scrollbar-color: #ccc transparent;
}

.dropdown-item {
	color: rgba(255, 255, 255, 0.60);
	font-feature-settings: 'liga' off, 'calt' off;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
}

/*FOOTER*/


.image-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	background: white;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.image-row img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #ddd;
}

.image-info {
	flex-grow: 1;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: #eee;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 4px;
}

.progress {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #4facfe, #00f2fe);
	transition: width 0.3s ease;
}

.size {
	font-size: 12px;
	color: #555;
	margin-top: 2px;
}

#clearBtn {
	display: none;
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	background: #4facfe;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
}

#sendBtn {
	width: 161px;
	border-radius: 58px;
	align-self: end;
	cursor: pointer;
	border: 0;
	background: #0080FF;
	padding: 20px 32px;
	color: #fff;
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	position: absolute;
	font-weight: 700;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 16px;
	bottom: 16px;
}

#sendBtn:hover, #clearBtn:hover {
	background: #389bfa;
}

#clearBtn {
	background: #f44336;
}

/* Скрываем дефолтный file input - iOS compatible method */
#imageInput {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Кастомная кнопка */
.custom-upload {
	width: 80%;
	max-width: 471px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-feature-settings: "liga" off, "calt" off;
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
	border-radius: 58px;
	background: #0080ff;
	border: 0;
	cursor: pointer;
}

.btns__list {
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.btn-link {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	cursor: pointer;
	border: 2px solid #0080FF;
	background: var(--white-100, #FFF);
}

.file-img {
	max-width: 90px;
	height: auto;
}


#imageUrl {
	border-radius: 999px;
	border: 2px solid #0080FF;
	background: #fff;
	color: #000;
	width: 471px;
	
	/* Shadow/xs */
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	padding: 16px 28px;
}

.url--btns__list {
	visibility: hidden;
}

.url--btns__list.active {
	visibility: visible;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #000;
}

#turnstile-container {
	display: none;
}

#cameraBtn {
	display: none;
	width: 248px;
	height: 48px;
	background-color: red;
}

#sendBtnUrl {
	border-radius: 999px;
	border: 2px solid #0080ff;
	background: #fff;
	padding: 15px;
	width: 56px;
	height: 56px;
}

.btn-link.none {
	display: none;
}

.result--wrapper {
	height: 100%;
	min-width: 522px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.result--wrapper.success {
	display: flex;
}

.hero__main {
	display: flex;
	position: relative;
	justify-content: center;
	background-color: #fff;
	gap: 30px;
	padding: 16px;
	max-width: 1106px;
	margin: 50px auto 0 auto;
	    border-radius: 30px;
}


.upload__area {
	max-width: 480px;
	margin: 40px auto;
	padding: 20px;
	background: #fafafa;
	border: 1px solid #ddd;
	border-radius: 10px;
}

.btns__list {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.file-row {
	display: flex;
	width: 100%;
	gap: 20px;
	margin-top: 10px;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	overflow: hidden;
	padding: 9px 0px;
}

.file-row img {
	width: 60px;
	height: 48px;
	object-fit: cover;
	border-radius: 10px;
	z-index: 1;
}

.file-info {
	flex-grow: 1;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}

.size {
	color: #6C6F73;
	text-align: center;
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
}

.status {
	color: #6C6F73;
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.file-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	background: rgba(202, 213, 255, 0.50);
	width: 0%;
	max-width: 100%;
	z-index: 0;
	transition: width 0.3s ease;
}

.remove-btn {
	background: none;
	border: none;
	color: #6C6F73;
	font-size: 18px;
	align-self: center;
	cursor: pointer;
	z-index: 2;
}


.result--wrapper > h3 {
	color: #000;
	
	/* Lead Text */
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
	margin-bottom: 12px;
}

.file-info-wrapper {
	display: flex;
	flex-direction: column-reverse;
	align-items: end;
	max-width: 522px;
}

.filename {
	color: #000;
	text-align: center;
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
	margin-right: 15px;
	max-width: 100px;
}

.result-img > img {
	width: 120px;
	height: 100px;
	object-fit: cover;
}

.result-item {
	align-items: flex-start; /* было center → ломало рост */
	display: flex;
	position: relative;
	justify-content: space-between;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	padding: 10px;
}

.result-img {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.result-text > p {
	color: var(--Dark-for-body, #6C6F73);
	/* Body 1 */
	
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	width: 890px;
	height: 52px;
	max-height: 52px;
	overflow-y: auto; /* скролл внутри */
	display: block;
}

.result-text > p span {
	color: var(--Dark-for-body, #6C6F73);
	/* Body 1 */
	
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

/* карточка тоже должна расти */
.result-item.expanded {
	max-height: none;
	height: auto;
	overflow: visible;
}

/* EXPANDED — показываем весь текст */
.result-item.expanded p {
	height: auto;
	max-height: none;
	overflow-y: visible;
	margin-top: 25px; /* полностью показываем текст */
	padding-right:5px;

}

.result-text {
	display: flex;
	justify-content: center;
	padding-left: 20px;
}

.final-results {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #fff;
	padding: 26px 20px;
	box-shadow: 0 4px 14px 0 rgba(221, 221, 242, 0.45);
	border-radius: 30px;
	max-width: 1106px;
}

.file-info-line {
	color: #000;
	text-align: center;
	
	/* Body 2 (Regular) */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
}

.result-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	min-height: 120px;
}

.item-buttons {
	display: flex;
	position: absolute;
	gap: 18px;
	right: 10px;
	top: 10px;
}

.item-buttons button {
	background: none;
	border: none;
}

/* Hide camera input - iOS compatible method */
#cameraInput {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Hide camera label on desktop, shown via media query on mobile */
.cameraInput {
	display: none;
}

.final-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.final-header h2 {
	color: #000;
	
	/* Lead Text */
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
}

.final-buttons {
	display: flex;
	gap: 20px;
}

.restart-btn {
	color: #0080FF;
	cursor: pointer;
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	
	/* Button text */
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	padding: 12px 24px;
	border-radius: 78px;
	border: 0.764px solid var(--Border-1, rgba(0, 0, 0, 0.10));
	background: rgba(68, 51, 255, 0.05);
	letter-spacing: 0.32px;
}

.download-btn {
	padding: 12px 24px;
	color: #fff;
	cursor: pointer;
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	border-radius: 78px;
	background: var(--Primary-Blue, #0080FF);
	border: 0;
	
	/* Button text */
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
}

.crop-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}

.crop-modal.active {
	display: flex;
}

.crop-content {
	background: #fff;
	padding: 24px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 700px;
	max-height: 85vh;
	overflow: hidden;
}

.crop-buttons {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.crop-buttons button {
	background: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

cropper-image {
	width: 100%;
	height: 70vh;
	background: #000;
}

.no-text {
	font-weight: bold;
	font-size: 18px;
	color: #ff4d4d;
}

.hint {
	font-size: 14px;
	color: #777;
	margin-top: 4px;
}


.remove-result {
	position: absolute;
	top: 8px;
	right: 8px;
	background: none;
	border: none;
	color: #888;
	font-size: 20px;
	cursor: pointer;
	transition: color 0.2s ease;
}

.remove-result:hover {
	color: #ff4d4d;
}


.no-text-title {
	font-size: 18px;
	color: red;
	font-family: var(--ff-sans);
}

.no-text-hint {
	font-family: var(--ff-sans);
	color: var(--Dark-for-body, #6C6F73);
}

.result-item.error-result {
	border-color: #EB5757;
}

.crop-body {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	border-radius: 12px;
}

.crop-body img {
	width: 100%;
	height: 100%;
	max-height: 55vh;
	object-fit: contain;
}

.crop-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.crop-footer button {
	padding: 6px 12px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.crop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cropClose {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.file-thumb-wrap {
	position: relative;
	display: inline-block;
}

.file-thumb {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #ddd;
	display: block;
}

/* Абсолютная кнопка внутри фото */
.crop-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 12px;
	border: none;
	border-radius: 4px 0;
	background: var(--white-100, #FFF);
	
	/* s1 */
	padding: 3px 7px;
	cursor: pointer;
	z-index: 2;
	line-height: 1;
}

.crop-header {
	display: flex;
	width: 100%;
}

.crop-header h3,
.crop-header .crop-heading {
	color: var(--Dark-title, #000);

	/* H3 */
	font-family: var(--ff-cab);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 30px */
}

.crop-controls {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
}

.crop-controls label {
	display: flex;
	justify-content: center;
	align-items: center;
}

#cropZoom {
	width: 100%;
	accent-color: #5c7cfa;
}

#cropCancel {
	color: var(--Primary-Blue, #0080FF);
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	
	/* Button text */
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
	padding: 16px 24px;
	border-radius: 68px;
	border: 0.764px solid var(--Border-1, rgba(0, 0, 0, 0.10));
	background: rgba(68, 51, 255, 0.05);
}

#cropConfirm {
	color: var(--white-100, #FFF);
	text-align: center;
	font-feature-settings: 'liga' off, 'calt' off;
	
	/* Button text */
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	letter-spacing: 0.32px;
	padding: 16px 24px;
	border-radius: 68px;
	background: var(--Primary-Blue, #0080FF);
}

/* ===== INFO BUTTON ===== */
.info-btn {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	border-radius: 0 8px;
	background: var(--white-100, #FFF);
	
	/* s1 */
	box-shadow: 0 4px 14px 0 rgba(221, 221, 242, 0.45);
	padding: 4px;
	cursor: pointer;
	z-index: 0;
}

.info-btn img {
	width: 18px;
	height: 18px;
	display: block;
	filter: invert(1);
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.info-btn:hover img {
	opacity: 1;
}

/* ===== INFO MODAL ===== */
.info-modal {
	position: fixed;
	inset: 0;
	padding: 20px;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.info-modal.active {
	display: flex;
}

.info-content {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	max-width: 400px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 20px;
	color: #333;
	cursor: pointer;
	font-weight: bold;
	transition: color .2s;
}

.info-close:hover {
	color: #e03131;
}

.info-content img {
	max-width: 100%;
	border-radius: 6px;
	margin-bottom: 15px;
}

.info-details h3 {
	margin: 0 0 5px;
}

.info-text {
	background: #f8f9fa;
	padding: 10px;
	border-radius: 6px;
	font-family: monospace;
	white-space: pre-wrap;
	max-height: 300px;
	overflow-y: auto;
}

.info-modal-top h3 {
	color: var(--Dark-title, #000);
	
	/* H3 */
	font-family: var(--ff-cab);;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 30px */
}

.info-modal-top {
	margin-bottom: 21px;
}

/* ====== ФОТО-МОДАЛ ====== */
.photo-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.photo-modal.active {
	display: flex;
}

.photo-top {
	margin-bottom: 21px;
}

.photo-content {
	position: relative;
	max-width: 95%;
	max-height: 95%;
	background-color: white;
	padding: 20px;
}

.photo-content h3,
.photo-content .photo-heading {
	color: var(--Dark-title, #000);

	/* H3 */
	font-family: var(--ff-cab);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 30px */
}

.photo-content img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
	transition: transform .25s ease, opacity .25s ease;
}

.photo-close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: none;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: background 0.2s ease;
}


/* ====== INFO-МОДАЛ ====== */
.info-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
}

.info-modal.active {
	display: flex;
}

.info-content {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	width: 100%;
	max-width: 400px;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-content img {
	max-width: 100%;
	border-radius: 8px;
	margin-bottom: 15px;
}

.info-details h3 {
	margin: 0 0 5px;
}

.info-text {
	background: #f8f9fa;
	padding: 10px;
	border-radius: 6px;
	font-family: monospace;
	white-space: pre-wrap;
	max-height: 300px;
	overflow-y: auto;
}

/* ====== INFO-КНОПКА НА ФОТО ====== */
.info-btn {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	border-radius: 4px;
	padding: 4px;
	cursor: pointer;
	z-index: 2;
}

.info-btn img {
	width: 18px;
	height: 18px;
	display: block;
	transition: opacity 0.2s ease;
}

#infoImage {
	width: 54px;
	height: 50px;
}

.info-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.info-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
	border-bottom: 1px solid #eee;
}

.info-label {
	font-weight: 600;
	color: #444;
	margin: 0;
}

.info-details p {
	margin: 0;
}

#infoName {
	color: var(--Dark-title, #000);
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
}

.info-label {
	color: rgba(0, 0, 0, 0.50);
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 22.4px */
}

#infoDimensions, #infoSize, #infoType {
	color: var(--Dark-title, #000);
	font-family: var(--ff-sans);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 22.4px */
}

.info-label-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.info-heading {
	color: var(--Dark-title, #000);
	
	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.info-heading-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	margin-bottom: 20px;
}

/* === UNIVERSAL POPUP === */
.popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 3000;
	backdrop-filter: blur(2px);
}

.popup.active {
	display: flex;
}

.popup-content {
	background: #fff;
	padding: 20px 24px 28px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
	max-width: 340px;
	width: 90%;
	position: relative;
	animation: popupFade 0.25s ease;
}

.popup-icon {
	width: 174px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 10px;
}

.popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.popup-header h3,
.popup-header .popup-title {
	color: var(--Dark-title, #000);

	/* Body 1 */
	font-family: var(--ff-sans);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
}

.popup-close {
	background: none;
	border: none;
	font-size: 20px;
	font-weight: 600;
	color: #888;
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.popup-close:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #000;
}

#popupMessage {
	color: var(--Dark-for-body, #6C6F73);
	
	/* Body 2 */
	font-family: var(--ff-sans);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 19.6px */
	text-align: left;
}

@keyframes popupFade {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.result-item.converting {
	position: relative;
	overflow: hidden;
}

.convert-overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: var(--progress, 0%);
	max-width: 100%;
	background: rgba(202, 213, 255, 0.5);
	transition: width 0.3s ease;
	z-index: 0;
}

/* Новый блок текста — всегда строго по центру всей карточки */
.convert-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	text-align: center;
	pointer-events: none;
	color: var(--Dark-for-body, #6C6F73);
	font-family: var(--ff-sans);
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
}


.hidden {
	display: none;
}

.expand-btn, .copy-btn, .save-btn {
	cursor: pointer;
	position: relative;
}

.btn-tooltip {
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a1a;
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-family: var(--ff-sans);
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10;
	pointer-events: none;
}

.btn-tooltip::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 5px 5px 0 5px;
	border-style: solid;
	border-color: #1a1a1a transparent transparent transparent;
}

.btn-tooltip.show {
	opacity: 1;
	visibility: visible;
}

.cropper-wrap-box, .cropper-drag-box, .cropper-bg {
	border-radius: 20px;
}

.no-text-block {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.no-text-top {
	display: flex;
	align-items: center;
	gap: 5px;
}

.no-text-top > span {
	color: var(--Red, #EB5757);
	
	/* Lead Text */
	font-family: var(--ff-sans);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 28px */
}

.no-text-block > .no-text-hint {
	color: var(--Dark-for-body, #6C6F73);
	
	/* Body 2 (Regular) */
	font-family: "Public Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
}

.result-item.no-text-result {
	border-radius: 16px;
	border: 1px solid var(--Red, #EB5757);
}

[id] {
	scroll-margin-top: 80px; /* любое значение */
}

/* Static Pages Styles */
.static-page {
	padding: 120px 0 80px;
	min-height: calc(100vh - 300px);
}

.static-page__title {
	color: var(--Dark-title, #000);
	font-family: var(--ff-cab);
	font-size: 48px;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 40px;
}

.static-page__content {
	max-width: 800px;
}

.static-page__content p {
	color: var(--Dark-for-body, #6C6F73);
	font-family: var(--ff-sans);
	font-size: 16px;
	line-height: 170%;
	margin-bottom: 20px;
}

.static-page__content h2 {
	color: var(--Dark-title, #000);
	font-family: var(--ff-cab);
	font-size: 28px;
	font-weight: 700;
	line-height: 130%;
	margin-top: 40px;
	margin-bottom: 16px;
}

.static-page__content h3 {
	color: var(--Dark-title, #000);
	font-family: var(--ff-cab);
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
	margin-top: 24px;
	margin-bottom: 12px;
}

.static-page__content ul {
	color: var(--Dark-for-body, #6C6F73);
	font-family: var(--ff-sans);
	font-size: 16px;
	line-height: 170%;
	margin-bottom: 20px;
	padding-left: 24px;
}

.static-page__content ul li {
	margin-bottom: 8px;
}

.static-page__content a {
	color: var(--Primary-Blue, #0080FF);
	text-decoration: underline;
}

.static-page__content a:hover {
	text-decoration: none;
}

.static-page__address {
	background: rgba(0, 128, 255, 0.05);
	padding: 20px;
	border-radius: 12px;
	border-left: 4px solid var(--Primary-Blue, #0080FF);
}
