/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat;
}

body {
  background-color: #242424;
  color: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}

.frame-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  background-color: #242424;
  overflow-x: hidden;
}

.container {
  width: 100%;
  position: relative;
}

/* Navigation Menu */
.how-it-works-section {
  width: 100%;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(198,198,198,1) 0%, rgba(96,96,96,1) 52%, rgba(198,198,198,1) 100%) 1;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.logo-icon {
  width: 19px;
  height: 19px;
}

.logo-text {
  width: 95px;
  height: 33px;
  margin-left: 12px;
}

.nav-menu {
  position: relative;
  width: 800px;
  height: 17px;
}

.nav-item {
  position: absolute;
  top: 0;
  font-weight: 500;
  color: #C6C6C6;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration:none
}

.nav-item:hover {
  color: white;
}


.login-button {
  height: 50px;
  width: 129px;
  margin-right: 79px;
  background-color: #839630;
  border: none;
  border-radius: 38px;

  font-weight: 500;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.buy-system-btn {
  margin: 0;
  padding: 0;
}

.login-button:hover {
  background-color: #242424;
  border: 1px solid white;
}
.login-button-black {
  height: 50px;
  width: 129px;
  margin-right: 79px;
  background-color: #242424;
  border: 1px solid white;
  border-radius: 38px;

  font-weight: 500;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.login-button-black:hover {
  background-color: white;
  color: #242424;
  border: none;
}

/* Mobile Navigation Controls */
.mobile-nav-controls {
  display: none;
  align-items: center;
  gap: 16px;
  margin-right: 20px;
}

.mobile-login-btn {
  display: none;
}

.desktop-login-btn {
  display: block;
}

.desktop-nav {
  display: block;
}

/* Burger Menu Button */
.burger-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu-btn:hover .burger-line {
  background-color: #C6C6C6;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F0EFEF;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-logo-icon {
  width: 19px;
  height: 19px;
}

.mobile-menu-logo-text {
  width: 95px;
  height: 33px;
}

.mobile-menu-logo img {
  filter: brightness(0);
}

.mobile-menu-login-btn {
  height: 50px;
  width: 129px;
  background-color: #242424;
  border: 1px solid #242424;
  border-radius: 38px;
  font-weight: 500;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  flex-shrink: 0;
}

.mobile-menu-login-btn:hover {
  background-color: white;
  color: #242424;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #242424;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 48px;
  height: 48px;
  transition: all 0.3s;
  font-weight: 300;
  z-index: 10000;
}

.mobile-menu-close:hover {
  color: #606060;
  transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  margin-bottom: auto;
}

.mobile-menu-item {
  font-size: 20px;
  font-weight: 400;
  color: #242424;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  transition: color 0.3s ease;
}

.mobile-menu-item:first-child {
  border-top: 1px solid rgba(36, 36, 36, 0.1);
}

.mobile-menu-item:hover {
  color: #839630;
}

/* Mobile Menu Contacts */
.mobile-menu-contacts {
  margin-top: auto;
  padding-top: 24px;
}

.mobile-contact-item {
  margin-bottom: 20px;
}

.mobile-contact-label {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  margin-bottom: 4px;
}

.mobile-contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
  text-decoration: none;
  display: block;
}

.mobile-contact-value:hover {
  color: #839630;
}
/* Testimonials Section */
.testimonials-section {
  width: 100%;
  padding: 96px 0;
  background-color: #f0efef;
  position: relative;
}

.section-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: normal;
  color: #000;
  letter-spacing: -0.63px;
  line-height: 60px;
  max-width: 845px;
}
.section-title-white {
  font-size: 48px;
  font-weight: normal;
  color: #FFFFFF;
  letter-spacing: -0.63px;
  line-height: 60px;
  max-width: 845px;
  white-space:nowrap;
  margin: 0 0 32px 0;
  padding: 0;
}

.section-subtitle {
  font-size: 18px;
  font-weight: normal;
  color: #606060;
  line-height: 28px;
  margin-top: 32px;
  display: block;
}

.testimonials-content {
  display: flex;
}

.testimonials-image {
  width: 25%;
  padding-right: 16px;
}

.testimonials-image img {
  width: 100%;
  max-width: 355px;
  height: auto;
}

.testimonials-items {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 0;
}

.badge {
  width: 99px;
  height: 50px;
  background-color: #839630;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.badge span {

  font-weight: 600;
  color: white;
  font-size: 14px;
}

.testimonial-title {

  font-weight: normal;
  color: black;
  font-size: 20px;
  letter-spacing: -0.30px;
  line-height: 36px;
  margin-bottom: 16px;
}

.testimonial-description {

  font-weight: normal;
  color: #656565;
  font-size: 16px;
  letter-spacing: -0.24px;
  line-height: 30px;
  max-width: 355px;
}

.why-choose-us-section {
  width: 100%;
  padding: 96px 0;
  background-color: white;
}

.card {
  margin: 0 auto;
  width: calc(100% - 110px);
  max-width: 1330px;
  background-color: #1f1f1f;
  border-radius: 25px;
  overflow: hidden;
  padding: 40px;
}

.system-works, .system-internals, .advantages {
  margin-bottom: 96px;
}

.section-description {

  color: #BFBFBF;
  font-size: 18px;
  line-height: 28px;
  max-width: 600px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-step img {
  width: 289px;
  height: 289px;
  margin-bottom: 16px;
}

.workflow-step span {

  font-weight: normal;
  color: white;
  font-size: 20px;
  letter-spacing: -0.30px;
  line-height: 36px;
}

.internals-content {
  display: flex;
  gap: 32px;
}

.internals-image {
  flex-shrink: 0;
}

.internals-image img {
  width: 555px;
  height: 555px;
  object-fit: cover;
}

.internals-details {
  flex: 1;
}

.screenshots {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.screenshot {
  width: 317px;
  height: 151px;
  background-color: #e7e7e6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #484848;
}

.screenshot:first-child img {
  width: 269px;
  height: 151px;
  object-fit: cover;
}

.screenshot:last-child img {
  width: 307px;
  height: 151px;
  margin-left: 10px;
  object-fit: cover;
}

.internals-description {

  color: #dedede;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.document-link {
  position: relative;
  width: 644px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.document-link:hover .fileIcon{
  content:url("../images/download/fileIconOn.svg");
}
.document-link:hover .fileDownload{
  content:url("../images/download/donwloadArrowOn.svg");
}

.document-info {
  display: flex;
  align-items: center;
}

.document-info img {
  width: 26px;
  height: 26px;
  margin-right: 24px;
}

.document-title {

  color: white;
  font-size: 16px;
}

.document-size {

  color: #5d5d5d;
  font-size: 12px;
}

.document-link img:last-child {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #333;
}

.advantages-list {
  display: flex;
  justify-content: space-between;
}

.advantage-item {
  width: 242px;
}
.advantage-item:hover .advantage-image{
  content: url('../images/dynamic/networkOn.svg');

}

.advantage-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.advantage-item h3 {

  color: white;
  font-size: 19.6px;
  line-height: 22px;
  margin-bottom: 24px;
}

.advantage-item p {

  color: #a1a1a1;
  font-size: 16px;
  line-height: 24px;
  max-width: 215px;
}

.about-us-section {
  position: relative;
  width: 100%;
  padding: 96px 0;
  background-color: #f0efef;
}

.timeline {
  position: relative;
  height: 463px;
  width: 100%;
}

.timeline-structure {
  position: relative;
  height: 463px;
  width: 100%;
}

.vertical-line {
  position: absolute;
  width: 2px;
  background-color: #000;
}

.horizontal-line {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 232px;
  left: 0;
  background-color: #000;
}

.timeline-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: black;
  border-radius: 7.5px;
}

.timeline-item {
  position: absolute;
  width: 357px;
  height: 150px;
  background-color: transparent;
}

.timeline-header {
  display: flex;
  align-items: center;
  height: 36px;
  margin-bottom: 30px;
}

.timeline-number {
  font-weight: bold;
  color: #BFBFBF;
  font-size: 20px;
  letter-spacing: -0.30px;
  line-height: 36px;
  white-space: nowrap;
}
.timeline-number.activeNum{
  color: #839630;
}

.timeline-separator {
  margin: 0 8px;
  height: 30px;
  width: 2px;
  background-color: black;
}

.timeline-title {

  font-weight: bold;
  color: black;
  font-size: 20px;
  letter-spacing: -0.30px;
  line-height: 36px;
  white-space: nowrap;
}

.timeline-description {

  color: #656565;
  font-size: 16px;
  line-height: 24px;
}

.features-section {
  position: relative;
  width: 100%;
  height: 971px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product-illustration {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.product-illustration img {
  width: 497px;
  height: 541px;
}

.contact-form {
  position: relative;
  width: 721px;
  height: 535px;
  margin-right: 91px;
  margin-left: 110px;
  padding: 0;
}

.contact-form .section-title {
  color: black;
  margin-bottom: 24px;
}

.contact-form .section-description {
  color: #606060;
  margin-bottom: 48px;
  max-width: 618px;
  padding: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  position: relative;
  margin: 0;
  margin-bottom: 24px;
}

.form-input {
  padding: 16px 20px;
  border: 2px solid #ccc;
  border-radius: 50px;
  width: 100%;
  max-width: 532px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #4a90e2;
}

.input-label {
  position: absolute;
  left: 20px;
  top: -10px;
  background: white;
  padding: 0 8px;
  font-size: 14px;
  color: #606060;
  text-align: left;
}

.form-input:focus + .input-label {
  color: #4a90e2;
}

.form-submit {
  position: relative;
  width: 504px;
  height: 64px;
  background-image: url("../images/submit.svg");
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  margin: 0;
  transition: all 0.4s ease;
}

.submit-button {
  height: 64px;
  width: 230px;
  background-color: #839630;
  border: none;
  border-radius: 100px;
  font-weight: 500;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  z-index: 2;
}
.submit-button:hover{
  transform: scale(1.02);
}
.submit-button.clicked {
    left: calc(100% - 230px);
}

.form-disclaimer {
  margin-left: 10px;
  font-weight: normal;
  color: #7b7b7b;
  font-size: 14px;
  line-height: 18px;
  max-width: 243px;
  position: absolute;
  left: 240px;
  transition: all 0.4s ease;
  z-index: 1;
}
.form-disclaimer.moved {
    left: 10px;
}

/* Footer Section */
.contact-us-section {
  width: 100%;
  background-color: #1e1e1e;
  padding: 0;
}

.footer-main {
  width: 100%;
  padding: 20px 16px 24px 16px;
  max-width: 1320px;
  margin: 0 auto 0 auto;
  box-sizing: border-box;
}

/* Footer Grid 2x2 */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer-left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}

.footer-right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: row;
}

.footer-logo-icon {
  width: 19px;
  height: 19px;
}

.footer-logo-text {
  width: 95px;
  height: 33px;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav-item {
  font-size: 12px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-nav-item:hover {
  color: #839630;
}

/* Footer Fund Block */
.footer-fund-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 320px;
  flex-shrink: 0;
}

.footer-fund-logo {
  width: auto;
  height: 80px;
}

.footer-contacts-block {
  display: flex;
  gap: 24px;
}

.footer-email {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-email-label {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
}

.footer-email-value {
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email-value:hover {
  color: #C6C6C6;
}

.footer-phone {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-phone-label {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
}

.footer-phone-value {
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone-value:hover {
  color: #C6C6C6;
}

.footer-fund-description {
  font-size: 10px;
  font-weight: 400;
  color: #F2F2F2;
  opacity: 0.7;
  line-height: 14px;
  margin: 0;
  max-width: 320px;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

/* Footer Burger Button */
.footer-burger-btn {
  display: none; /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.footer-burger-line {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.footer-burger-btn:hover .footer-burger-line {
  background-color: #C6C6C6;
}

.footer-copyright-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Footer Burger Menu */
.footer-burger-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #F0EFEF;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.footer-burger-menu.active {
  opacity: 1;
  visibility: visible;
}

.footer-burger-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.footer-burger-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-burger-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-burger-logo img {
  filter: brightness(0);
}

.footer-burger-logo-icon {
  width: 19px;
  height: 19px;
}

.footer-burger-logo-text {
  width: 95px;
  height: 33px;
}

.footer-burger-close {
  background: none;
  border: none;
  color: #242424;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 48px;
  height: 48px;
  transition: all 0.3s;
  font-weight: 300;
  z-index: 10000;
}

.footer-burger-close:hover {
  color: #606060;
  transform: rotate(90deg);
}

.footer-burger-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  margin-bottom: auto;
}

.footer-burger-item {
  font-size: 20px;
  font-weight: 400;
  color: #242424;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  transition: color 0.3s ease;
}

.footer-burger-item:first-child {
  border-top: 1px solid rgba(36, 36, 36, 0.1);
}

.footer-burger-item:hover {
  color: #839630;
}

.footer-burger-contacts {
  margin-top: auto;
  padding-top: 24px;
}

.footer-burger-contact-item {
  margin-bottom: 20px;
}

.footer-burger-contact-label {
  font-size: 14px;
  font-weight: 400;
  color: #606060;
  margin-bottom: 4px;
}

.footer-burger-contact-value {
  font-size: 20px;
  font-weight: 600;
  color: #242424;
  text-decoration: none;
  display: block;
}

.footer-burger-contact-value:hover {
  color: #839630;
}

.footer-burger-login-btn {
  height: 50px;
  width: 129px;
  background-color: #242424;
  border: 1px solid #242424;
  border-radius: 38px;
  font-weight: 500;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.footer-burger-login-btn:hover {
  background-color: white;
  color: #242424;
}
.descrioption-section {
  background-color: #242424;
  padding: 96px 110px 0 50px;
  margin: 0;
}

.hero-content {
  margin: 0;
  padding: 0;
}

.hero-content .section-description {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.image-container-first{
  position: relative;
  left: 40%;
}
.image-container-last{
  position: relative;
  left: -7%;
  top: -12%;
}

.footer-header {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(198,198,198,1) 0%, rgba(96,96,96,1) 52%, rgba(198,198,198,1) 100%) 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin: 0 50px 0 0;
}

.logo-text {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-letter {
  font-weight: 800;
  color: white;
  font-size: 27px;
}

.logo-dots {
  margin: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background-color: white;
}

.logo-triangles {
  margin: 0 4px;
  display: flex;
  flex-direction: column;
}

.logo-triangles img {
  width: 8px;
  height: 11px;
}

.brand {
  display: flex;
  align-items: center;
  margin: 0 150px;
}

.brand-icon {
  width: 23px;
  height: 23px;
  margin-right: 8px;
}

.brand-name {
  font-weight: normal;
  color: white;
  font-size: 28.4px;
  letter-spacing: -0.43px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-nav-item {
  color: #C6C6C6;;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  margin: 0 25px;
}
.footer-nav-item:hover {
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.sponsor-section {
  align-self: flex-start;
  margin-left: 16px;
  margin-bottom: 16px;
}

.sponsor-title {
  font-weight: normal;
  color: #606060;
  font-size: 14px;
  line-height: 28px;
}

.sponsor-logo {
  width: 123px;
  height: 60px;
  margin-top: 16px;
}

.copyright {
  margin-top: 64px;
  margin-bottom: 16px;
  text-align: center;

  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  letter-spacing: -0.22px;
  line-height: 24px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Base container */
  .container {
    overflow-x: hidden;
  }

  /* Navigation */
  .how-it-works-section {
    height: 79px;
    flex-direction: row;
    padding: 0 20px;
    justify-content: space-between;
  }

  .logo {
    margin-left: 0;
    margin-bottom: 0;
  }

  .logo-icon {
    width: 16px;
    height: 16px;
  }

  .logo-text {
    width: 80px;
    height: 28px;
  }

  /* Hide desktop navigation */
  .desktop-nav {
    display: none !important;
  }

  .desktop-login-btn {
    display: none !important;
  }

  /* Show mobile controls */
  .mobile-nav-controls {
    display: flex !important;
  }

  .mobile-login-btn {
    display: block !important;
    width: 100px;
    height: 38px;
    font-size: 14px;
    margin-right: 0;
  }

  .burger-menu-btn {
    display: flex !important;
  }

  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }

  /* Description Section */
  .descrioption-section {
    margin: 0;
    padding: 32px 16px 0 16px;
  }

  .descrioption-section > div {
    flex-direction: column !important;
  }

  .image-container-first,
  .image-container-last {
    position: static !important;
    left: 0 !important;
    top: 0 !important;
    text-align: center;
    margin: 16px 0;
  }

  .image-container-first img,
  .image-container-last img {
    max-width: 100%;
    height: auto;
  }

  /* Sections */
  .testimonials-section,
  .why-choose-us-section,
  .about-us-section {
    padding: 48px 16px;
  }

  .features-section {
    padding: 48px 16px;
    overflow-x: hidden;
  }

  .section-container {
    padding: 0;
  }

  .section-title,
  .section-title-white {
    font-size: 28px;
    line-height: 36px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .section-subtitle {
    font-size: 14px;
    margin-top: 8px;
  }

  .section-description {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    margin-bottom: 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  /* Testimonials */
  .testimonials-content {
    flex-direction: column;
  }

  .testimonials-image,
  .testimonials-items {
    width: 100%;
  }

  .testimonials-items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Card */
  .card {
    width: calc(100% - 32px);
    padding: 24px;
  }

  /* Case Card */
  .case-card {
    margin: 0 20px;
    padding: 20px;
  }

  /* Workflow Steps */
  .workflow-steps {
    flex-direction: column;
    align-items: center;
  }

  .workflow-step {
    margin-bottom: 24px;
  }

  .workflow-step img {
    width: 200px;
    height: 200px;
  }

  /* Internals */
  .internals-content {
    flex-direction: column;
  }

  .internals-image img {
    width: 100%;
    height: auto;
  }

  .screenshots {
    flex-direction: column;
  }

  .screenshot {
    width: 100%;
    height: auto;
  }

  .screenshot:first-child img,
  .screenshot:last-child img {
    width: 100%;
    margin-left: 0;
  }

  .document-link {
    width: 100%;
  }

  /* Advantages */
  .advantages-list {
    flex-direction: column;
    gap: 32px;
  }

  .advantage-item {
    width: 100%;
  }

  /* Timeline */
  .timeline {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .timeline-structure {
    display: none;
  }

  .timeline-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .timeline-header {
    flex-wrap: wrap;
    height: auto;
    margin-bottom: 16px;
  }

  .timeline-title {
    font-size: 18px;
    line-height: 28px;
    white-space: normal;
  }

  .timeline-description {
    font-size: 14px;
    line-height: 22px;
  }

  /* Contact Form */
  .features-section {
    height: auto;
    flex-direction: column;
    padding: 48px 16px;
  }

  .product-illustration {
    margin-bottom: 32px;
  }

  .product-illustration img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .contact-form {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 0 8px;
  }

  .contact-form .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-form .section-description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .form-fields {
    gap: 16px;
  }

  .input-group {
    margin: 0;
    width: 100%;
  }

  .form-input {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .input-label {
    left: 8px;
    font-size: 12px;
    min-width: 80px;
  }

  .form-submit {
    width: 100%;
    background-image: none;
    background-color: transparent;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  .submit-button {
    position: relative;
    width: 100%;
    height: 50px;
    left: 0 !important;
    border-radius: 25px;
  }

  .submit-button.clicked {
    left: 0 !important;
  }

  .form-disclaimer {
    position: relative;
    left: 0 !important;
    text-align: center;
    max-width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .form-disclaimer.moved {
    left: 0 !important;
  }

  /* Footer */
  .footer-header {
    height: auto;
    padding: 16px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-nav {
    display: none !important;
  }

  .footer-nav-item {
    margin: 0;
  }

  .brand {
    margin: 0;
  }

  /* Mobile Footer Styles */
  .contact-us-section {
    position: relative;
  }

  .footer-top {
    padding: 0;
    border-bottom: none;
  }

  .footer-top-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    position: relative;
  }

  /* First row: Logo and Burger */
  .footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    order: 1;
  }

  .footer-logo {
    order: 1;
    padding: 0;
    display: flex !important;
    align-items: center;
    position: relative;
  }

  .footer-burger-btn {
    display: flex !important;
    position: relative;
    top: auto;
    right: auto;
    z-index: 10;
    order: 2;
  }

  /* Second row: Contacts and Sponsor side by side */
  .footer-contacts {
    order: 2;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 24px 20px;
    width: 100%;
  }

  .footer-contact-item {
    width: auto;
    text-align: left;
  }

  .footer-contact-label {
    font-size: 14px;
  }

  .footer-contact-value {
    font-size: 20px;
    font-weight: 600;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
    position: relative;
    max-width: 100%;
    margin: 0;
  }

  .footer-sponsor {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    padding: 0 20px 24px 20px;
    order: 3;
  }

  .footer-sponsor-title {
    font-size: 14px;
  }

  .footer-sponsor-logo {
    width: 123px;
    height: 60px;
  }

  .footer-copyright {
    font-size: 12px;
    text-align: center;
    width: 100%;
    padding: 0 20px 24px 20px;
    margin: 0;
  }

  /* New Footer Grid for Mobile */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-left-column {
    gap: 16px;
  }

  .footer-logo-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-nav {
    display: none !important;
  }

  .footer-contacts-block {
    flex-direction: column;
    gap: 16px;
  }

  .footer-email {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-email-label {
    font-size: 12px;
  }

  .footer-email-value {
    font-size: 16px;
  }

  .footer-phone {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-phone-label {
    font-size: 12px;
  }

  .footer-phone-value {
    font-size: 16px;
  }

  .footer-right-column {
    align-items: flex-end;
  }

  .footer-fund-block {
    align-items: flex-end;
    max-width: 280px;
  }

  .footer-fund-logo {
    height: 60px;
    width: auto;
  }

  .footer-fund-description {
    font-size: 9px;
    line-height: 12px;
    text-align: left;
    max-width: 280px;
  }

  .footer-copyright-wrapper {
    margin-top: 16px;
    padding-top: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-burger-btn {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .footer-logo-nav {
    position: relative;
  }
}

@media (max-width: 480px) {
  .section-title,
  .section-title-white {
    font-size: 22px;
    line-height: 30px;
  }

  .section-description {
    font-size: 14px;
    padding: 0;
  }

  .workflow-step img {
    width: 120px;
    height: 120px;
  }

  .workflow-step span {
    font-size: 16px;
    line-height: 24px;
  }

  .badge {
    width: 60px;
    height: 35px;
  }

  .badge span {
    font-size: 12px;
  }

  .testimonial-title {
    font-size: 18px;
    line-height: 28px;
  }

  .testimonial-description {
    font-size: 14px;
    line-height: 24px;
  }

  .advantage-item h3 {
    font-size: 17px;
    line-height: 20px;
  }

  .advantage-item p {
    font-size: 14px;
    line-height: 20px;
  }

  .input-group {
    margin: 0;
  }

  .contact-form .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .form-input {
    font-size: 14px;
  }

  .submit-button {
    font-size: 16px;
  }
}

/* Video Analytics Section */
.video-analytics-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.analytics-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}

.analytics-block {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.analytics-block-reverse {
  flex-direction: row-reverse;
}

.analytics-image {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.analytics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.analytics-image-first {
  background-color: transparent;
  padding: 10px;
}

.analytics-image-first img {
  object-fit: contain;
}

.analytics-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.analytics-title {
  color: #242424;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.analytics-description {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .analytics-block {
    gap: 40px;
  }

  .analytics-image {
    width: 300px;
    height: 220px;
  }

  .analytics-title {
    font-size: 20px;
  }

  .analytics-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .analytics-grid {
    gap: 40px;
    padding: 0 20px;
  }

  .analytics-block {
    flex-direction: column !important;
    gap: 20px;
  }

  .analytics-block-reverse {
    flex-direction: column !important;
  }

  .analytics-image {
    width: 100%;
    height: 250px;
    order: 1;
  }

  .analytics-content {
    order: 2;
  }

  .analytics-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .analytics-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .video-analytics-section {
    padding: 60px 0;
  }

  .analytics-grid {
    margin-top: 40px;
    gap: 32px;
  }

  .analytics-row {
    gap: 32px;
  }

  .analytics-item-image {
    height: 220px;
  }

  .analytics-item-title {
    font-size: 18px;
  }

  .analytics-item-badge {
    font-size: 12px;
    padding: 5px 15px;
  }
}

