@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
		url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-accent: #0070BA;
	--paypal-blue: #003087;
	--paypal-light: #0070BA;
	--paypal-sky: #009CDE;
	--white: #fff;
	--black: #000000;
	--color-text: #8696A0;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Montserrat';
	font-weight: 400;
	font-size: 16px;
}

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

a {
	color: inherit;
	text-decoration: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

/* ----------------- BADGE ----------------- */

.badge {
	display: block;
	max-width: 600px;
    background: linear-gradient(95deg, #EAF4FB, #D9EFFA);
	padding: 5px 20px;
	color: var(--paypal-sky);
	border: 1px solid rgba(0, 112, 186, 0.2);
	border-radius: 40px;
	margin: 0 auto 40px;
}


/* ----------------- HEADER ----------------- */

header {
	padding: 10px 0;
	background: #003087;
	box-shadow: 7px 0 16px 0 rgba(0, 0, 0, .12);
	transition: transform 0.3s ease;
}

header.hide {
	transform: translateY(-100%);
}

@media (max-width: 768px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
	}
}

.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	max-width: 100px;
}

.burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 20px;
	height: 20px;
}

.burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--white);
	border-radius: 100px;
}

/* ----------------- INTRO ----------------- */

.intro {
	position: relative;
	background: linear-gradient(135deg, #0070BA 0%, #001C64 100%);
	padding: 100px 0 0;
}

.intro .badge {
	display: flex;
	align-items: center;
	background: rgb(0 156 222 / 18%);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 156, 222, 0.35);
	color: #00A86B;
	/* box-shadow: rgb(91 221 180 / 80%) 0px 0px 100px 1px; */
}

.intro .badge .dot {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: #00A86B;
	box-shadow: rgb(0 156 222 / 100%) 0px 0px 10px 2px;
	margin-right: 6px;
	animation: dotPulse 1.5s ease-in-out infinite;
}



.intro__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.intro__title {
	font-weight: 700;
	font-size: 48px;
	color: var(--white);
	margin-bottom: 20px;
	text-align: center;
}

.intro__text-img {
	display: block;
	width: auto;
	max-width: 340px;
	margin-bottom: 28px;
	background: rgba(255, 255, 255, 0.96);
	padding: 16px 30px;
	border-radius: 24px;
	box-shadow:
		0 12px 30px rgba(0, 48, 135, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.35);
	object-fit: contain;
}

.intro__subtitle {
	font-weight: 600;
	font-size: 32px;
	color: var(--white);
	margin-bottom: 40px;
	text-align: center;
}

.intro__subtitle .accient {
	color: #00A86B;
}

.intro__block {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}


.intro__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 80px;
	width: 100%;
}

.intro__icon {
	background: var(--white);
	border-radius: 100%;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.intro__icon-img {
	display: block;
}



.intro__icon-img {
	display: block;
	position: relative;
	z-index: 1;
}





.intro__item--phone {
	max-width: 500px;
}

.intro__phone {
	max-width: 500px;
	flex-shrink: 0;
}

/* ----------------- INCOME ----------------- */

.income {
	position: relative;
	padding: 70px 0 100px;
	overflow: hidden;
}

.income__badge {
	top: -100px;
	bottom: 0;
	border-radius: 0 0 100% 100%;
	padding-top: 140px;
	background-color: #0070BA26;
}

.income__title {
	font-weight: 700;
	font-size: 26px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 40px;
	color: #1A1F36;
}

.income__calc {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
    border: 1px solid rgba(0, 156, 222, 0.2);
    border-radius: 48px;
	background: rgba(0, 156, 222, 0.03);
    backdrop-filter: blur(2px);
	gap: 20px;
	max-width: 800px;
	margin: 0 auto 20px;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
}

.calc__header {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.calc__header-img {
	max-width: 70px;
	background-color: var(--paypal-sky);
	border-radius: 30px;
	padding: 15px;
}

.calc__header-img img {
	display: block;
	fill: #fff;
	stroke: #fff;
}

.calc__title {
	font-size: 32px;
	color: #272727;
	margin-bottom: 5px;
}

.calc__text {
	color: #5B6B7A;
}

.calc__subtitle {
	font-size: 24px;
	color: #272727;
}

.calc__main {
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 20px;
	width: 100%;
	padding: 16px;
	gap: 20px;
}

.calc__input {
	display: flex;
	flex: 2;
	width: 100%;
	gap: 20px;
}

.calc__item {
	display: flex;
	flex-direction: column;
}

.calc__input-label {
	position: relative;
	width: 100%;
}

.calc__input-label::after {
	content: "$";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	font-size: 12px;
	color: #727272;
}

.calc__item:last-child .calc__input-label::after {
	content: "дней";
}

.calc__footer {
	background: rgba(0, 156, 222, 0.05);
    padding: 20px 24px;
    border-radius: 40px;
}

.calc__input-title {
	font-weight: 600;
	color: #272727;
	margin-bottom: 10px;
}

.calc__input-text {
	padding: 15px 60px 15px 20px;
	border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    background: #fefefe;
    transition: 0.2s;
    font-weight: 500;
	width: 100%;
	outline: none;
	appearance: none;
}

.calc__input-text::placeholder {
  color: rgba(255, 0, 0, 0.63); /* Ваш цвет */
  opacity: 1; /* Опционально: Firefox может снижать прозрачность */
}

.calc__input-text:focus {
    border-color: var(--paypal-sky);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.2);
}

.calc__input-text.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

.calc__btn {
	padding: 20px;
	font-weight: 500;
	font-size: 18px;
	text-transform: uppercase;
	color: var(--white);
	background: linear-gradient(100deg, var(--paypal-sky), #009CDE);
	border: none;
	outline: none;
	border-radius: 40px;
	transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0, 112, 186, 0.3);
	cursor: pointer;
}

.calc__btn:hover {
    transform: scale(0.97);
    background: linear-gradient(100deg, #005EA6, #0070BA);
}

.calc__info {
	font-size: 14px;
	color: #5B6B7A;
	text-align: center;
	margin-top: 10px;
}

.calc__min-profit {
	font-weight: 700;
	color: var(--paypal-sky);
}

.calc__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.calc__footer-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

.calc__footer-img {
	max-width: 60px;
	max-height: 60px;
	background-color: #fff;
	border-radius: 100%;
	padding: 15px;
	flex-shrink: 0;
}

.calc__footer-title {
	font-size: 24px;
	color: #272727;
	margin-bottom: 5px;
}

.calc__footer-subtitle {
	font-size: 16px;
	color: #272727;
}

.calc__income {
	font-weight: 700;
	font-size: 38px;
	color: var(--paypal-sky);
}

.income__descr {
	max-width: 600px;
	text-align: center;
	margin: 0 auto;
	color: #5B6B7A;
}

/* ----------------- BENEFITS ----------------- */

.benefits {
	padding: 50px 0;
	background: #F5F7FA;
}

.benefits__title {
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 40px;
	text-align: center;
	color: #003087;
}

.benefits__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}

.benefits__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	max-width: 400px;
	padding: 20px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
	border: 1px solid rgba(0, 112, 186, 0.1);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
}

.benefits__img {
	display: block;
	width: 150px;
    height: 150px;
	border-radius: 100%;
	border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);
}

.benefits__subtitle {
	color: #003087;
	font-size: 28px;
	margin-bottom: 20px;
}

/* ----------------- PROFIT ----------------- */

.profit {
	padding: 50px 0 0;
}

.profit__title {
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 40px;
	text-align: center;
	color: #003087;
}

.profit__subtitle {
	font-weight: 700;
	font-size: 26px;
	margin-bottom: 20px;
	text-align: center;
	color: #003087;
}

.profit__descr {
	max-width: 900px;
	margin: 0 auto 40px;
	text-align: center;
	color: #5B6B7A;
}

.profit__slider .swiper-wrapper {
	padding: 60px 0;
    transition-timing-function: linear !important;
}

.profit__slider {
    position: relative;
}

.profit__slider::before,
.profit__slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.profit__slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.profit__slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

.slider__item-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 500px;
	min-height: 450px;
	padding: 30px;
	border-radius: 32px;
	/* background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)); */
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	overflow: hidden;
}

.slider__item-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 50%, rgba(255, 255, 255, 0.1));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.slider__item-inner {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.6));
	backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 10px 14px;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	min-width: 220px;
}

.slider__item-header {
	font-weight: 700;
	font-size: 15px;
	color: #1A1F36;
	border-bottom: 1px solid rgba(0, 156, 222, 0.15);
	padding: 0 0 12px;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.slider__item-block {
	display: flex;
	gap: 16px;
	padding: 4px 0;
}

.slider__item-logo {
	max-width: 250px;
}

.slider__item-col {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.slider__item-title {
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #8696A0;
}

.slider__item-value {
	font-weight: 700;
	font-size: 16px;
	color: #0070BA;
}

.slider__item-value.day { color: #00A86B; }
.slider__item-value.price { color: #1A1F36; }
.slider__item-value.profits { color: #00A86B; }


/* ----------------- FAQ ----------------- */

.faq {
	margin: 100px 0 0;
	background: #F5F7FA;
}

.faq__title {
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 40px;
	text-align: center;
	color: #003087;
}

.faq__wrapper {
	display: flex;
	align-items: center;
}

.faq__item {
	width: 50%;
	height: 100%;
}

.faq__block-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 0px 0 0;
}

.faq__img {
	display: block;
}

.faq__accordion {
	width: 100%;
	max-width: 600px;
}

.faq__accordion-item {
	border-bottom: 1px solid rgba(0, 112, 186, 0.2);
	display: flex;
	flex-direction: column;
}

.faq__accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	color: #003087;
	text-align: left;
}

.faq__accordion-icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.faq__accordion-icon::before,
.faq__accordion-icon::after {
	content: '';
	position: absolute;
	background: var(--paypal-sky);
	transition: transform 0.3s ease;
}

.faq__accordion-icon::before {
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.faq__accordion-icon::after {
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.faq__accordion-item.active .faq__accordion-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

.faq__accordion-item.active .faq__accordion-icon::before {
	transform: translateY(-50%) rotate(180deg);
}

.faq__accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq__accordion-item.active .faq__accordion-body {
	max-height: 500px;
}

.faq__accordion-body p {
	padding: 0 0 20px;
	color: #5B6B7A;
	line-height: 1.6;
}

.faq__accordion-body ul {
	padding: 0 0 20px 20px;
	color: #5B6B7A;
	line-height: 1.6;
}

.faq__accordion-body li {
	margin-bottom: 8px;
}

/* ----------------- FOOTER ----------------- */

footer {
	background: #003087;
	color: #fff;
}

.footer__wrapper {
	text-align: center;
	padding: 60px 0 30px;
}

.footer__text {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 20px;
}

.footer__copyright {
	font-weight: 600;
	font-size: 20px;
}

/* ----------------- MOBILE MENU ----------------- */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, #0070BA 0%, #001C64 100%);
	z-index: 9999;
	transition: right 0.4s ease;
	display: flex;
	flex-direction: column;
	padding: 40px 20px;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.mobile-menu__close {
	position: relative;
	width: 20px;
	height: 20px;
}

.mobile-menu__close span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 50%;
	background: #fff;
}

.mobile-menu__close span:last-child {
	transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu__logo .logo {
	max-width: 120px;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	height: 100%;
}

.mobile-menu__link {
	font-size: 24px;
	font-weight: 600;
	color: var(--white);
	text-align: center;
	padding: 15px;
	border-radius: 20px;
	transition: background 0.3s ease;
}

.mobile-menu__link:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ----------------- RESPONSIVE ----------------- */

@media (max-width: 1200px) {
	.profit__slider .swiper-wrapper {
		padding: 40px 0;
	}

	.slider__item-wrapper {
		min-height: 400px;
		padding: 20px;
	}

	.slider__item-logo {
		max-width: 200px;
	}
}

@media (max-width: 1024px) {
	.profit__slider .swiper-slide {
		width: 300px !important;
	}

	.slider__item-inner {
		min-width: 180px;
		padding: 8px 10px;
	}

	.slider__item-block {
		gap: 10px;
	}

	.slider__item-value {
		font-size: 14px;
	}
}

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

	.faq__item {
		width: 100%;
	}

	.faq__img {
		max-height: 300px;
		object-fit: cover;
	}

	.faq__block-wrapper {
		padding: 40px 20px;
	}
}

@media (max-width: 768px) {
	.intro {
		padding: 90px 0 0;
	}

	.intro__title {
		font-size: 32px;
	}

	.intro__text-img {
		max-width: 200px;
	}

	.intro__subtitle {
		font-size: 22px;
	}

	.intro__block {
		width: 100%;
		gap: 20px;
	}

	.intro__item {
		max-width: 60px;
	}

	.intro__item--phone {
		max-width: 100% !important;
	}

	.intro__icon {
		padding: 15px;
	}

	.intro__icon-img {
		max-width: 100%;
	}

	.intro__phone {
		max-width: 280px;
	}

	.badge {
		text-align: center;
	}

	.income {
		padding: 50px 0 60px;
	}

	.income__title {
		font-size: 20px;
	}

	.income__calc {
		padding: 25px;
		border-radius: 32px;
	}

	.calc__header {
		flex-direction: column;
		text-align: center;
	}

	.calc__title {
		font-size: 24px;
	}

	.calc__main {
		flex-direction: column;
	}

	.calc__btn {
		width: 100%;
		padding: 15px;
	}

	.calc__income {
		font-size: 28px;
	}

	.benefits__title {
		font-size: 32px;
	}

	.benefits__list {
		flex-direction: column;
		align-items: center;
	}

	.benefits__img {
		width: 120px;
		height: 120px;
	}

	.benefits__subtitle {
		font-size: 22px;
	}

	.profit__title {
		font-size: 32px;
	}

	.profit__subtitle {
		font-size: 20px;
	}

	.slider__item-wrapper {
		min-height: 350px;
		padding: 15px;
		border-radius: 24px;
	}

	.slider__item-inner {
		min-width: 160px;
		border-radius: 16px;
	}

	.slider__item-header {
		font-size: 13px;
		padding-bottom: 8px;
		margin-bottom: 8px;
	}

	.slider__item-title {
		font-size: 9px;
	}

	.slider__item-value {
		font-size: 12px;
	}

	.slider__item-logo {
		max-width: 150px;
	}

	.faq {
		margin-top: 50px;
	}

	.faq__title {
		font-size: 32px;
	}

	.footer__wrapper {
		padding: 40px 20px 20px;
	}

	.footer__text {
		font-size: 14px;
	}

	.footer__copyright {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.intro__title {
		font-size: 26px;
	}

	.intro__subtitle {
		font-size: 18px;
	}

	.intro .badge {
		padding: 5px;
		font-size: 10px;
		text-align: center;
	}

	.intro .badge .dot {
		flex-shrink: 0;
	}

	.intro__block {
		align-items: flex-end;
		gap: 10px;
	}

	.intro__item {
		max-width: 50px;
		margin-bottom: 20px;
	}

	.intro__item--phone {
		margin-bottom: 0;
	}

	.intro__icon {
		padding: 10px;
	}

	.intro__phone {
		max-width: 200px;
	}

	.badge {
		padding: 4px 15px;
		font-size: 12px;
		margin-bottom: 25px;
	}

	.income__calc {
		padding: 20px;
	}

	.calc__input {
		flex-direction: column;
	}

	.calc__header-img {
		max-width: 50px;
		padding: 10px;
	}

	.calc__title {
		font-size: 20px;
	}

	.calc__text {
		font-size: 14px;
	}

	.calc__input-text {
		padding: 12px 50px 12px 15px;
		border-radius: 20px;
	}

	.calc__footer {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
		border-radius: 30px;
	}

	.calc__income {
		font-size: 24px;
	}
	

	.profit__descr {
		font-size: 14px;
		padding: 0 10px;
	}

	.profit__title {
		font-size: 26px;
	}

	.profit__subtitle {
		font-size: 16px;
		padding: 0 10px;
	}

	.profit__slider::before, .profit__slider::after {
		width: 30px;
	}

	.slider__item-wrapper {
		min-height: 300px;
		padding: 10px;
	}

	.slider__item-inner {
		min-width: 140px;
		padding: 6px 8px;
		border-radius: 14px;
	}

	.slider__item-header {
		font-size: 11px;
		padding-bottom: 6px;
		margin-bottom: 6px;
	}

	.slider__item-block {
		gap: 6px;
	}

	.slider__item-title {
		font-size: 8px;
	}

	.slider__item-value {
		font-size: 10px;
	}

	.slider__item-logo {
		max-width: 120px;
	}
}

/* ================= PAYPAL UX UPDATE ================= */

/* More visible hero badge */
.intro .badge {
	max-width: 760px;
	padding: 14px 28px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	justify-content: center;
	color: #ffffff;
	background: linear-gradient(100deg, rgba(0, 156, 222, 0.34), rgba(0, 48, 135, 0.55));
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: 0 14px 40px rgba(0, 28, 100, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.intro .badge .dot {
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background: #00c2ff;
	box-shadow: 0 0 16px 3px rgba(0, 194, 255, 0.8);
}

/* Larger phone in hero */
.intro__item--phone {
	max-width: 640px;
}

.intro__phone {
	max-width: 640px;
}

/* Registration sections */
.registration {
	padding: 70px 0;
	background: #ffffff;
}

.registration--first {
	background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.registration--bottom {
	background: linear-gradient(180deg, #f5f7fa 0%, #eaf4fb 100%);
}

.registration__card {
	max-width: 900px;
	margin: 0 auto;
	padding: 42px;
	border-radius: 36px;
	background: #ffffff;
	border: 1px solid rgba(0, 112, 186, 0.16);
	box-shadow: 0 24px 60px rgba(0, 48, 135, 0.12);
}

.registration__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 30px;
}

.registration__logo-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	min-height: 72px;
	margin-bottom: 12px;
}

.registration__logo-slot img {
	display: block;
	max-width: 150px;
	max-height: 72px;
	object-fit: contain;
}

.registration__title {
	font-size: 36px;
	line-height: 1.2;
	color: #003087;
	margin-bottom: 8px;
}

.registration__subtitle {
	font-size: 18px;
	line-height: 1.5;
	color: #5b6b7a;
}

.registration__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.registration__field {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.registration__field span {
	font-size: 16px;
	font-weight: 600;
	color: #1a1f36;
}

.registration__field input {
	width: 100%;
	padding: 16px 18px;
	font-family: inherit;
	font-size: 17px;
	color: #1a1f36;
	background: #ffffff;
	border: 1.5px solid #d8e2ea;
	border-radius: 18px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.registration__field input::placeholder {
	color: #8a98a6;
}

.registration__field input:focus {
	border-color: #0070ba;
	box-shadow: 0 0 0 4px rgba(0, 112, 186, 0.12);
}

.registration__button {
	display: block;
	width: 100%;
	margin-top: 24px;
	padding: 18px 24px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(100deg, #0070ba, #009cde);
	border: 0;
	border-radius: 30px;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(0, 112, 186, 0.22);
	transition: transform .2s ease, box-shadow .2s ease;
}

.registration__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 112, 186, 0.28);
}

.registration__success {
	display: none;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #0070ba;
}

.registration__success.show {
	display: block;
}

@media (max-width: 768px) {
	body {
		font-size: 17px;
		line-height: 1.55;
	}

	.intro .badge {
		max-width: 94%;
		padding: 12px 18px;
		font-size: 16px;
		margin-bottom: 28px;
	}

	.intro__phone {
		max-width: 360px;
	}

	.income__title {
		font-size: 22px;
		line-height: 1.5;
	}

	.income__descr,
	.benefits__descr,
	.profit__descr,
	.faq__accordion-body p,
	.faq__accordion-body ul {
		font-size: 17px;
		line-height: 1.65;
	}

	.calc__text,
	.calc__footer-subtitle {
		font-size: 16px;
	}

	.calc__input-title {
		font-size: 16px;
	}

	.calc__input-text {
		font-size: 16px;
	}

	.slider__item-title {
		font-size: 10px;
	}

	.slider__item-value {
		font-size: 14px;
	}

	.footer__text {
		font-size: 16px;
		line-height: 1.6;
	}

	.registration {
		padding: 50px 0;
	}

	.registration__card {
		padding: 28px 22px;
		border-radius: 28px;
	}

	.registration__title {
		font-size: 30px;
	}

	.registration__subtitle {
		font-size: 17px;
	}

	.registration__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.registration__field span {
		font-size: 16px;
	}

	.registration__field input {
		font-size: 17px;
		padding: 15px 16px;
	}
}

@media (max-width: 480px) {
	body {
		font-size: 17px;
	}

	.intro .badge {
		padding: 11px 14px;
		font-size: 15px;
		line-height: 1.4;
	}

	.intro .badge .dot {
		width: 8px;
		height: 8px;
		margin-right: 8px;
	}

	.intro__phone {
		max-width: 285px;
	}

	.income__title {
		font-size: 20px;
	}

	.calc__text {
		font-size: 16px;
	}

	.profit__descr {
		font-size: 16px;
	}

	.profit__subtitle {
		font-size: 18px;
		line-height: 1.45;
	}

	.slider__item-header {
		font-size: 12px;
	}

	.slider__item-title {
		font-size: 9px;
	}

	.slider__item-value {
		font-size: 12px;
	}

	.footer__text {
		font-size: 15px;
	}

	.registration__card {
		padding: 24px 16px;
		border-radius: 24px;
	}

	.registration__logo-slot {
		width: 130px;
		min-height: 60px;
	}

	.registration__logo-slot img {
		max-width: 130px;
		max-height: 60px;
	}

	.registration__title {
		font-size: 28px;
	}

	.registration__subtitle {
		font-size: 16px;
	}

	.registration__button {
		font-size: 17px;
		padding: 16px 20px;
	}
}

/* PayPal logo readability */
@media (max-width: 768px) {
	.intro__text-img {
		width: auto;
		max-width: 260px;
		padding: 13px 24px;
		border-radius: 20px;
		margin-bottom: 25px;
	}
}

@media (max-width: 480px) {
	.intro__text-img {
		width: auto;
		max-width: 240px;
		padding: 12px 22px;
		border-radius: 18px;
	}
}

/* ================= HEADER LOGO + FORM BRAND UPDATE ================= */

/* Header PayPal logo readability */
.header__logo,
.mobile-menu__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.96);
	padding: 7px 12px;
	border-radius: 16px;
	box-shadow:
		0 8px 22px rgba(0, 28, 100, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.28);
}

.header__logo .logo,
.mobile-menu__logo .logo {
	display: block;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

/* PayPal Bot title with logo2.png on the left */
.registration__brand-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 10px;
}

.registration__logo2-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(0, 112, 186, 0.14);
	box-shadow: 0 8px 22px rgba(0, 48, 135, 0.10);
	overflow: hidden;
}

.registration__logo2 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
}

.registration__brand-head .registration__title {
	margin-bottom: 0;
	text-align: left;
}

@media (max-width: 768px) {
	.header__logo,
	.mobile-menu__logo {
		padding: 6px 10px;
		border-radius: 14px;
	}

	.header__logo .logo,
	.mobile-menu__logo .logo {
		max-width: 110px;
	}

	.registration__brand-head {
		gap: 12px;
	}

	.registration__logo2-slot {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
		border-radius: 14px;
	}
}

@media (max-width: 480px) {
	.header__logo,
	.mobile-menu__logo {
		padding: 5px 9px;
		border-radius: 12px;
	}

	.header__logo .logo,
	.mobile-menu__logo .logo {
		max-width: 100px;
	}

	.registration__brand-head {
		gap: 10px;
	}

	.registration__logo2-slot {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
		border-radius: 12px;
	}

	.registration__logo2 {
		padding: 5px;
	}
}
.text-blue {
	color: #0070BA;
	font-weight: 700;
}