.full {
	background: transparent;
}
/* Video background - закомментировано, используем статичный фон */
/*
.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	z-index: -1;
	overflow: hidden;
	background: #333;
	will-change: height;
}

.video-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
	pointer-events: none;
}
*/

/* Static background image */
html {
	height: 100%;
}

body {
	text-align: left;
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-weight: 400;
	position: relative;
	z-index: 1;
	min-height: 100vh;
	height: auto;
	background-color: #333;
}

/* Фоновое изображение через псевдоэлемент для лучшей совместимости с мобильными */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg1.png) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -2;
	pointer-events: none;
	/* Убираем fixed для мобильных устройств */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
	pointer-events: none;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
/* Video styles - закомментировано
.video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	will-change: transform;
	transition: opacity 1s ease-in;
	opacity: 1;
	z-index: 1;
}
*/
strong {
	font-weight: 700;
}
a, a:hover {
	color: #fff;
	text-decoration: none;
}
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #333;
	z-index: 99999;
	height: 100%;
}
#status {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
	padding: 0;
}
/* Main Content Styles */
.main-content {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 10px 20px 10px;
	color: #fff;
}

.logo {
	padding-bottom: 10px;
	font-size: 36px;
	text-align: center;
}
.logo i {
	color: #1fba99;
}
.logo-img {
	max-width: 800px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: transform 0.3s ease;
}
.logo-img:hover {
	transform: scale(1.02);
}

/* Scroll Arrow */
.scroll-arrow {
	position: relative;
	text-align: center;
	margin: 5px 0 10px 0;
	z-index: 10;
	cursor: pointer;
	opacity: 1 !important;
	visibility: visible !important;
	display: block !important;
	transition: opacity 0.5s ease;
}

.arrow-icon {
	width: 80px;
	height: auto;
	max-height: 100px;
	display: block;
	margin: 0 auto;
	animation: bounceArrow 2s infinite;
	filter: drop-shadow(0 2px 15px rgba(254, 207, 3, 0.8));
	transition: filter 0.3s ease;
}

@keyframes bounceArrow {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

.scroll-arrow:hover .arrow-icon {
	filter: drop-shadow(0 2px 15px rgba(248, 188, 30, 0.5)) brightness(1.2);
}

.name {
	font-size: 72px;
	font-weight: 700;
	text-shadow: 0 2px 20px rgba(31, 186, 153, 0.3), 0 0 40px rgba(31, 186, 153, 0.1);
	text-transform: uppercase;
	letter-spacing: 4px;
	text-align: center;
	margin: 20px 0;
	color: #fff;
	line-height: 1.2;
}

.description {
	margin: 25px 0 40px;
	text-align: center;
}

.desc-main {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.6;
	color: #e0e0e0;
	margin: 0 0 15px;
	letter-spacing: 1px;
}

.desc-hebrew {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.8;
	color: #b0b0b0;
	margin: 0;
	letter-spacing: 0.5px;
}

/* Tech Details Styles */
.tech-details {
	margin: 40px 0 50px;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.tech-section {
	margin: 20px 0;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-left: 3px solid rgba(248, 188, 30, 0.5);
	border-radius: 5px;
	transition: all 0.3s ease;
}

.tech-section:hover {
	background: rgba(255, 255, 255, 0.08);
	border-left-color: rgba(248, 188, 30, 0.8);
	transform: translateX(5px);
}

.tech-category {
	font-size: 18px;
	font-weight: 600;
	color: #F8BC1E;
	margin: 0 0 8px 0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.tech-items {
	font-size: 16px;
	font-weight: 300;
	color: #d0d0d0;
	margin: 0;
	line-height: 1.6;
	letter-spacing: 0.3px;
}

.contact-info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 50px;
}

.contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 40px;
	background: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 50px;
	text-decoration: none;
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-align: center;
}

.contact-item:hover {
	background: #ffffff;
	border-color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item:hover .contact-text {
	color: #F8BC1E;
}

.contact-item:hover .contact-icon {
	color: #F8BC1E;
	opacity: 1;
}

.contact-icon {
	font-size: 18px;
	line-height: 1;
	opacity: 0.8;
	transition: color 0.3s ease, opacity 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.contact-icon i {
	font-size: 18px;
}

.contact-text {
	font-weight: 600;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.coming-soon {
	position: relative;
	z-index: 2;
	padding-top: 60px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
	text-align: center;
	color: #fff;
}
.coming-soon h2 {
	font-size: 80px;
	font-weight: 700;
	text-shadow: 0 1px 7px rgba(0,0,0,.2);
	text-transform: uppercase;
	letter-spacing: -2px;
}
.coming-soon h3 {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 10px;
	opacity: 0.3;
	margin-top: 40px;
}
.coming-soon p {
	margin-top: 20px;
	font-size: 20px;
	line-height: 36px;
	display: inline-block;
	background: rgba(45,45,45,.2);
	padding: 5px 10px;
	border-radius: 10px;
}
.counter {
	margin-top: 10px;
	text-shadow: 0 1px 5px rgba(0,0,0,.1);
}
.counter .days-wrapper, .counter .hours-wrapper, .counter .minutes-wrapper, .counter .seconds-wrapper {
	display: inline-block;
	width: 160px;
	height: 140px;
	margin: 0 10px;
	padding-top: 20px;
	background: #2d2d2d; /* browsers that don't support rgba */
	background: rgba(45,45,45,.5);
	font-size: 18px;
	-moz-border-radius: 80px;
	-webkit-border-radius: 80px;
	border-radius: 80px;
}
.counter .days, .counter .hours, .counter .minutes, .counter .seconds {
	font-size: 80px;
	line-height: 90px;
}
.subscribe {
	padding-top: 50px;
	text-align: center;
}
.subscribe h3 {
	font-size: 32px;
	font-weight: 400;
	color: #fff;
	line-height: 40px;
	display: inline-block;
	background: rgba(45,45,45,.3);
	padding: 10px 20px;
	border-radius: 10px;
}
.subscribe p {
	font-size: 18px;
	font-weight: 400;
	line-height: 36px;
}
.subscribe form {
	margin-top: 24px;
}
.subscribe form input {
	width: 310px;
	height: 46px;
	margin: 0;
	padding: 0 10px;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 46px;
	color: #777;
	border: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 3px;
}
.subscribe form input:focus {
	-moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
	-webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
}
 .subscribe form input:-moz-placeholder {
color: #888;
}
.subscribe form input:-ms-input-placeholder {
color: #888;
}
.subscribe form input::-webkit-input-placeholder {
color: #888;
}
.subscribe form button {
	width: 130px;
	height: 46px;
	margin: 0;
	padding: 0;
	background: #1BBC9B;
	border: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #fff;
	border-radius: 3px;
	text-shadow: 0;
}
.subscribe form button:hover {
	background: #16a084;
	color: #fff;
}
.subscribe form button:active {
	background: #1BBC9B;
	color: #fff;
}
.social {
	margin-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}
.social a i {
	display: inline-block;
	padding: 0 10px;
}
.social a i:hover {
	color: #1BBC9B;
}
.footer {
	position: relative;
	z-index: 2;
	padding: 30px 20px;
	text-align: center;
}

.copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	letter-spacing: 1px;
	margin: 0;
}
.copyright a {
	border-bottom: 1px dotted #1BBC9B;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}
.copyright a:hover {
	color: #1BBC9B;
}

/***** Media Queries *****/

@media (min-width: 768px) and (max-width: 979px) {
.logo h1 {
	padding-left: 0;
}
.counter .days-wrapper, .counter .hours-wrapper, .counter .minutes-wrapper, .counter .seconds-wrapper {
	width: 140px;
	height: 120px;
	margin: 0 7px;
	padding-top: 20px;
	-moz-border-radius: 70px;
	-webkit-border-radius: 70px;
	border-radius: 70px;
}
.counter .days, .counter .hours, .counter .minutes, .counter .seconds {
	font-size: 60px;
	line-height: 70px;
}
}

@media (max-width: 767px) {
/* Исправление для Android - используем absolute вместо fixed */
body::after {
	position: absolute;
	height: 100%;
	min-height: 100vh;
	-webkit-transform: none;
	transform: none;
}

body::before {
	position: absolute;
	height: 100%;
	min-height: 100vh;
	-webkit-transform: none;
	transform: none;
}

body {
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
.logo h1 {
	padding-left: 0;
	text-align: center;
}
.logo-img {
	max-width: 90%;
}
.scroll-arrow .arrow-icon {
	width: 60px;
	max-height: 75px;
}
.name {
	font-size: 42px;
	letter-spacing: 2px;
	padding: 0 20px;
}
.desc-main {
	font-size: 20px;
	padding: 0 20px;
}
.desc-hebrew {
	font-size: 18px;
	padding: 0 20px;
}
.tech-details {
	margin: 30px 15px 40px;
}
.tech-section {
	margin: 15px 0;
	padding: 12px 15px;
}
.tech-category {
	font-size: 16px;
}
.tech-items {
	font-size: 14px;
}
.contact-info {
	flex-direction: column;
	gap: 20px;
	padding: 0 20px;
}
.contact-item {
	font-size: 14px;
	padding: 15px 30px;
}
.coming-soon h2 {
	font-size: 36px;
	padding: 0 20px;
}
.coming-soon p {
	padding: 0 20px;
}
.counter .days-wrapper, .counter .hours-wrapper, .counter .minutes-wrapper, .counter .seconds-wrapper {
	width: 140px;
	height: 120px;
	margin: 7px;
	padding-top: 20px;
	-moz-border-radius: 70px;
	-webkit-border-radius: 70px;
	border-radius: 70px;
}
.counter .days, .counter .hours, .counter .minutes, .counter .seconds {
	font-size: 60px;
	line-height: 70px;
}
.subscribe h3 {
	padding: 0 20px;
	font-size: 28px;
}
.subscribe p {
	padding: 0 20px;
}
}

@media (max-width: 480px) {
.logo-img {
	max-width: 85%;
}
.name {
	font-size: 32px;
	letter-spacing: 1px;
}
.desc-main {
	font-size: 18px;
}
.desc-hebrew {
	font-size: 16px;
}
.tech-details {
	margin: 25px 10px 35px;
}
.tech-section {
	margin: 12px 0;
	padding: 10px 12px;
}
.tech-category {
	font-size: 14px;
}
.tech-items {
	font-size: 13px;
	line-height: 1.5;
}
.contact-item {
	font-size: 14px;
	padding: 10px 20px;
}
.subscribe form {
	padding: 0 20px;
}
.subscribe form input {
	width: 90%;
}
.subscribe form button {
	width: 90%;
	margin-top: 10px;
}
}
