css
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
html {
  font-size: clamp(14px, 4vw, 18px);
  font-family: 'Oswald', sans-serif;
  color: #111;
  margin: 0;
  padding: 0;
}
-webkit-scrollbar {
    width: 6px;
}
-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}
-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}
body {
  font-family: 'Oswald', sans-serif;
  background-color: #f9f9f9;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  cursor: url('/assets/images/cursor.cur'), auto;
  font-display: swap;
}
a:hover,
button:hover,
input:hover,
textarea:hover,
select:hover,
label:hover {
  cursor: url('/assets/images/cursor.cur'), auto;
}
a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
  font-weight: normal;
}

a:hover {
  color: inherit;
  text-decoration: none;
  font-weight: bold; 
}
ul {
  list-style: none;
}
:root {
  --color-white: #ffffff;
  --color-mint-pink: #FFDEE9;
  --color-mint-pink-dark: #B5FFFC;
  --color-mint-pink-bright: #FF80B5;
  --color-black: #111111;
  --color-gray: #666666;
  --color-light-gray: #f2f2f5;
  --background-opaque: rgba(255, 255, 255, 0.6);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2vh;
  padding-right: 2vh;
}
section {
  background: white;
  display: flex;
  flex-direction: column;
  margin: 0 auto 2vh;
  align-items: center;
  transform: translateY(50px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.section__hero {
  transform: translateY(0px);
}
section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#typeTarget {
  display: inline;
  border-right: 2px solid #fff;
  font-weight: bold;
  animation: blink 0.75s step-end infinite;
}
.team-title h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}
.team-title h1::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}
@keyframes blink {
  50% { border-color: transparent; }
}
#butterfly-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 10000;
}

#butterfly {
  width: 100%;
  height: 100%;
  transition: transform 0.1s linear;
  z-index: 10000;
}
.title {
  font-size: 2.2vh;
}
@keyframes flap {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.8); }
}

#butterfly.flapping {
  animation: flap 0.4s infinite;
}
[data-editable-type="attribute"] {
    position: relative !important;
    display: inline-block;
}
.edit-pencil {
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 15px;
    z-index: 1000;
}
[data-editable-type="attribute"] .edit-pencil {
    position: absolute;
    top: 10px;
    right: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
[data-editable]:hover .edit-pencil {
    opacity: 1;
}
.editor-overlay {
    background: white !important;
    animation: editorFadeIn 0.3s ease !important;
    padding: 10px !important;
    box-shadow: 0 0 10px rgb(0 0 0 / 64%) !important;
    z-index: 10000 !important;
    min-width: 400px;
}
@media (max-width: 500px) {
    .editor-overlay {
        min-width: 95vw !important;
        padding: 5px !important; /* уменьшаем отступы для маленьких экранов */
    }
}
@keyframes editorFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.editor-overlay textarea {
    transition: all 0.3s ease !important;
    width: 100% !important;
    height: 10vh !important;
    color: black !important;
}
.editor-overlay editor-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    justify-content: center !important;
}
.editor-overlay textarea:focus {
    border-color: #2196F3 !important;
    box-shadow: 0 0 8px rgba(33,150,243,0.3) !important;
}
#seo-editor {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 10000;
    width: 420px;
    transition: transform 0.3s ease;
}
.seo-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.toggle-editor {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}
.seo-editor-content {
    padding-right: 15px;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
#seo-editor.active .seo-editor-content {
    max-height: 500px;
}
.form-group {
    position: relative;;
}
.form-group input {
    color: black !important;
}
.form-group label {
    padding-top: 10px;
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}
.editable-text {
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 6px;
    min-height: 40px;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}        
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #4285f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}      
.loader-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #333;
}       
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#content {
    opacity: 0;
    transition: opacity 0.5s;
}      
.loaded #content {
    opacity: 1;
}       
.loaded #loader {
    opacity: 0;
    visibility: hidden;
}
#seo-editor .edit-pencil {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    padding: 5px;
    border-radius: 4px;
}
.header-info-block {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
}
.siteaddress {
    display: flex;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
}
.siteaddress a{
    color: inherit !important;
    text-decoration: none !important;
    outline: none !important;
}
.address {
    display: flex;
    align-items: baseline;
}
@media (max-width: 1024px) {
  .hero {
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__subtitle {
    font-size: 1.3rem;
    max-width: 80%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  section {
    margin-bottom: 4vh;
    transform: translateY(30px);
  }
  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    max-width: 90%;
  }
  .hero__btn {
    padding: 1rem 1.5rem;
    font-size: clamp(1rem, 3vw, 1.25rem);
  }
  #butterfly-container {
    display: none;
  }
  #seo-editor {
    width: 280px;
    right: 10px;
}
  .header-info-block {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  body {
    line-height: 1.4;
  }
  section {
    transform: translateY(20px);
  }
  .hero__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero__btn {
    width: 100%;
    text-align: center;
  }
  .container {
    max-width: 100%;
  }
  .siteaddress {
    display: flex;
    text-decoration: none;
    font-weight: 500;
    flex-direction: row;
  }
}
@media (max-width: 360px) {
  html {
    font-size: clamp(13px, 5vw, 16px);
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }
  .hero__btn {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
}