* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #060913;
  color: #fff;
}

.header {
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 45px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-link,
.lang-link {
  border: 1px solid #5b8def;
  color: #5b8def;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  font-family: inherit;
}

.lang-link {
  cursor: pointer;
}

.hero-form {
  padding: 100px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 25px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0 0 30px;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  opacity: 0.8;
}

.contact-card {
  flex: 1 1 400px;
  background: #0f1a2f;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-logo-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.card-logo {
  height: 70px;
}

.contact-card h2 {
  font-size: 28px;
  margin: 0 0 10px;
  text-align: center;
}

.form-subtitle {
  font-size: 14px;
  opacity: 0.6;
  margin: 0 0 25px;
  text-align: center;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #060913;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

form textarea {
  height: 120px;
  margin-bottom: 20px;
  resize: vertical;
}

form button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #5b8def, #6fe3c2);
  color: #060913;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}

.genesys {
  padding: 100px 6%;
  background: #0b1326;
  text-align: center;
}

.genesys-logo {
  height: 50px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.genesys h2 {
  font-size: 32px;
  margin: 0 0 20px;
}

.genesys p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
}

.final-block {
  padding: 80px 6%;
  text-align: center;
}

.final-block h2 {
  font-size: 32px;
  margin: 0 0 20px;
}

.final-block p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  opacity: 0.75;
}

.footer {
  padding: 40px 6%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0.6;
  gap: 20px;
}

.footer-logo {
  height: 35px;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
}

:root {
  --parallax-shift: 0px;
}

/* Variant-07 High-end minimalist styles */
.variant-07 .header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(9px);
  background: rgba(7, 11, 22, 0.7);
}

.variant-07 .hero-form,
.variant-07 .genesys,
.variant-07 .final-block {
  padding-left: 14%;
  padding-right: 14%;
  transition: max-width 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.variant-07 .hero-form {
  position: relative;
  overflow: hidden;
}

.variant-07 .hero-form::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle at 80% 30%, rgba(111, 227, 194, 0.14), transparent 38%),
    radial-gradient(circle at 25% 75%, rgba(91, 141, 239, 0.2), transparent 42%);
  transform: translate3d(0, calc(var(--parallax-shift) * -0.35), 0);
  pointer-events: none;
}

.variant-07 .hero-form > * {
  position: relative;
  z-index: 1;
}

.variant-07 .genesys,
.variant-07 .final-block {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.variant-07 .is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.variant-07 .hero-text h1 {
  font-size: 64px;
  letter-spacing: -0.02em;
}

.variant-07 .contact-card {
  background: rgba(15, 26, 47, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91, 141, 239, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.variant-07 .contact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(111, 227, 194, 0.7);
}

.variant-07 .footer {
  border-top: 1px solid rgba(91, 141, 239, 0.25);
}

@media (max-width: 768px) {
  .variant-07 .hero-form,
  .variant-07 .genesys,
  .variant-07 .final-block {
    padding-left: 5%;
    padding-right: 5%;
  }

  .variant-07 .hero-text h1 {
    font-size: 40px;
  }

  .header-actions {
    gap: 8px;
  }

  .home-link,
  .lang-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .genesys h2,
  .final-block h2 {
    font-size: 28px;
  }
}
