.clear,
.main,
html.overflow-hidden body {
  overflow: hidden;
}
.overflow-menu {
  overflow: hidden;
}
#loader,
body,
html {
  height: 100%;
}
ul,
ol {
  list-style: none;
}

:root {
  --primary-color: #fff;
  --primary-color-thin: rgba(255, 0, 144, 0.2);
  --text-color-black: #15161a;
  --text-color-white: #fff;
  --label-color: #505050;
  --border-color: #e7e7e7;
  --background-color: #f5f5f5;
  --background-color-black: #0f0f0f;

  --blur: 10px;
  --bg-overlay: rgba(0, 0, 0, 0.56);
  --box-shadow:
    0 0 1.5rem 0 rgba(0, 0, 0, 0.03), 0 0 0.5rem 0 rgba(0, 0, 0, 0.06);
  --transition-1: 0.3s ease;

  --sp-xl: 5.5rem;
  --sp-lg: 2rem;
  --sp-md: 1.5rem;
  --sp-sm: 1.5rem;
  --sp-xs: 1rem;
  --primary: #1f5c5a;
  --primary-soft: #3f7f7b;
  --accent: #1c5351;
  --bg-light: #f6f9f9;
  --text-dark: #0f2f2e;

  --cubic-1: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --cubic-2: cubic-bezier(0.33, 1, 0.68, 1);
}

#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  -webkit-animation: 1s linear forwards loader;
  animation: 1s linear forwards loader;
}
@-webkit-keyframes loader {
  0%,
  70% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}
@keyframes loader {
  0%,
  70% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
.clear {
  clear: both;
  height: 0;
  font-size: 0px;
  display: block;
}
html:not(.touch-screen) ::-webkit-scrollbar,
html:not(.touch-screen)::-webkit-scrollbar {
  width: 0px;
  height: 5px;
  border-radius: 10px;
}
html:not(.touch-screen) ::-webkit-scrollbar-track,
html:not(.touch-screen)::-webkit-scrollbar-track {
  background: transparent;
}
html:not(.touch-screen) ::-webkit-scrollbar-thumb,
html:not(.touch-screen)::-webkit-scrollbar-thumb {
  background: #8a8a8c;
  border-radius: 10px;
}
:active,
:focus,
:visited {
  outline: 0;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* ===== Common ===== */
.container {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-1);
  gap: 12px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: #fff;
}

.btn--outline svg {
  width: 24px;
  fill: var(--primary);
  transition: var(--transition-1);
}

.btn--ghost {
  color: var(--primary);
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: 0.25s ease;
}

.btn--whatsapp:hover .icon-whatsapp {
  fill: var(--accent);
}

/* /* ===== Header base (твій код + доповнення) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 68px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== Dropdown desktop ===== */
.nav-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  min-width: 160px;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
}

/* ===== Burger ===== */
.burger {
  display: none;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.burger span {
  display: block;
  height: 2px;
  background: #000;
  position: absolute;
  width: 30px;
  transition: var(--transition-1);
}
/* Позиції ліній */
.burger span:nth-child(1) {
  top: 8px;
}
.burger span:nth-child(2) {
  top: 19px;
}
.burger span:nth-child(3) {
  top: 29px;
}

/* ===== Active → хрестик ===== */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}
/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  /* inset: 0;  */
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s ease;
  z-index: 200;
  max-width: 400px;
  width: 100%;
  border-top: 1px solid var(--primary);
  top: 80px;
  height: calc(100vh - 80px);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  overflow: auto;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
}

/* ===== Mobile dropdown ===== */
.mobile-dropdown__title {
  font-size: 20px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-dropdown__menu {
  display: none;
  padding-left: 16px;
  margin-top: 8px;
}

/* ===== Arrow ===== */
.dropdown-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

/* ===== Desktop hover ===== */

/* ===== Mobile active ===== */
.mobile-dropdown__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-dropdown.active .dropdown-arrow {
  transform: rotate(-135deg);
}

/* ===== Adaptive ===== */
@media (min-width: 1024px) {
  .dropdown-arrow {
    position: relative;
    top: -3px;
  }
  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(-135deg);
    top: 0px;
  }
}
@media (max-width: 1024px) {
  .nav--desktop {
    display: none;
  }

  .burger {
    display: block;
  }
  .header nav .btn {
    /* margin-top: auto; */
    width: 100%;
  }
}

/* ===== Hero =====
.hero {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, rgb(0 0 0) 0%, rgba(15, 47, 46, 0.2) 100%);
  opacity: 0.7;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 span {
  color: var(--primary);
  color: #fff;
}

.hero__subtitle {
  font-size: 18px;
  color: #4a6f6d;
  margin-bottom: 28px;
  color: #fff;
}

.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hero__features li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
} */

/* ===== HERO BASE ===== */
.hero {
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 80vh;
  position: relative;
}

/* ===== LEFT BLOCK ===== */
.hero__left {
  /* position: relative; */
  padding: 90px 0 90px 50px;
  color: #fff;
  display: flex;
  align-items: center;
  /* background: #1f5f5b;

  clip-path: polygon(
    0.15% 0%,
    94.38% 0%,
    96.26% 9%,
    97.3% 18.13%,
    97.67% 30.09%,
    97.3% 40.95%,
    96.03% 52.64%,
    94.38% 60.6%,
    90.76% 73.07%,
    87.13% 82.29%,
    82.31% 91.22%,
    76% 100%,
    0.15% 100%
  );
  z-index: 2; */
}

.hero__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.2) 18%,
      rgba(255, 255, 255, 0.1) 32%,
      rgba(255, 255, 255, 0.02) 45%,
      rgba(255, 255, 255, 0) 85%
    ),
    #1f5f5b;
  clip-path: polygon(
    0.15% 0%,
    94.38% 0%,
    96.26% 9%,
    97.3% 18.13%,
    97.67% 30.09%,
    97.3% 40.95%,
    96.03% 52.64%,
    94.38% 60.6%,
    90.76% 73.07%,
    87.13% 82.29%,
    82.31% 91.22%,
    76% 100%,
    0.15% 100%
  );
  top: -4%;
  height: 116%;
  width: 49%;
  left: -5%;
  transform: rotate(4deg);
}

.hero__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: #fff;
  clip-path: polygon(
    0.15% 0%,
    94.38% 0%,
    96.26% 9%,
    97.3% 18.13%,
    97.67% 30.09%,
    97.3% 40.95%,
    96.03% 52.64%,
    94.38% 60.6%,
    90.76% 73.07%,
    87.13% 82.29%,
    82.31% 91.22%,
    76% 100%,
    0.15% 100%
  );
  top: -4%;
  height: 116%;
  width: 48%;
  transform: rotate(-3deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== TITLE ===== */
.hero__title {
  margin-bottom: 32px;
  line-height: 1.15;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 0;
  position: relative;
}
.hero__title span {
  display: block;
  position: relative;
  z-index: 2;
}
.hero__title:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  top: 50%;
  height: 80px;
  width: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  z-index: 2;
}
.hero__logo {
  max-width: 32%;
  display: table;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
  left: -6%;
}
.hero__logo img {
  width: 100%;
  height: auto;
  filter: contrast(0.8) drop-shadow(2px 4px 6px black);
}
.hero__title:after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: 0;
  top: 0;
  right: -2%;
  background: #356867;
  z-index: 1;
  border-bottom-right-radius: 72px;
}

/* first line */
.hero__title-main {
  display: block;
}

/* second line that goes outside */
.hero__title-accent {
  display: inline-block;
  margin-top: 12px;
  margin-right: -220px; /* 🔥 “вилазить” вправо */
  padding: 12px 28px;

  background: #ffffff;
  color: #1f5f5b;

  font-size: 32px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== LIST ===== */
.hero__list {
  list-style: none;
  padding: 0;
  /* margin: 0 0 36px; */
}

/* ===== BUTTON ===== */
.hero__btn {
  display: inline-block;
  background: #ffffff;
  color: #1f5f5b;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.hero__btn:hover {
  transform: translateY(-2px);
}

/* ===== RIGHT IMAGE ===== */
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__right {
  margin: 0 0 0 -10%;
  position: relative;
}

.hero__list p {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  max-width: 340px;
  opacity: 0.8;
}
.hero__list li {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.hero__content .btn {
  border-color: #fff;
  margin: 20px 0 10px;
}
.hero__content .btn--primary {
  display: none;
}
.hero__content .small {
  font-size: 14px;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .hero__left {
    padding: 50px 20px;
  }
  .hero__title {
    margin-bottom: 26px;
    font-size: 30px;
    padding: 12px 0;
  }
  .hero__wrapper {
    min-height: 65vh;
  }
}
@media (max-width: 1024px) {
  .hero__content .btn--primary {
    display: inline-flex;
  }
  .hero__content .btn--outline,
  .nav {
    display: none;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }
  .hero__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .hero__right {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .hero__left {
  }
  .hero__wrapper::after {
    content: none;
  }
  .hero__logo {
    max-width: 100px;
    margin-bottom: 25px;
    left: 0;
  }
  .hero__wrapper::before {
    background:
      radial-gradient(
        circle at 50% 25%,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.2) 18%,
        rgba(255, 255, 255, 0.1) 32%,
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 85%
      ),
      rgb(0 0 0 / 75%);
    /* rgba(31, 95, 91, 0.75); */
    clip-path: none;
    top: 0;
    height: 200%;
    width: 100%;
    left: 0;
    transform: none;
  }
  .hero__title:after {
    content: none;
  }
  .hero__content {
    text-align: center;
  }
  .hero__list p {
    max-width: 100%;
    text-align: center;
  }
  .hero__title:before {
    width: 50%;
    height: 2px;
    top: 100%;
    transform: translateY(0%);
    right: 0;
    margin: auto;
  }
  .hero h1 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .btn--primary:hover {
    background: var(--accent);
    color: #fff;
  }
  .btn--outline:hover {
    background: var(--primary);
    color: #fff;
  }
  .btn--outline:hover svg {
    fill: #fff;
  }
  .nav a:hover {
    color: var(--primary);
  }
}
@media (max-width: 768px) {
  .header .btn {
    padding: 10px 22px;
    border-width: 1px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .hero__features li {
    font-size: 14px;
  }
  .hero__left {
    padding: 40px 15px;
  }

  .mobile-dropdown__title,
  .mobile-nav a {
    font-size: 18px;
  }
}

/* ===== Header actions (button + icons) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .social-icons {
  margin-top: 0;
}
/* Іконки в хедері */
.social-icons--header {
  display: flex;
  align-items: center;
  gap: 0px;
}

.social-icons--header a {
  width: 40px;
  height: 40px;
  /* border: 1px solid var(--primary); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-1);
}

.social-icons--header svg {
  width: 18px;
  height: 18px;
}
.social-icons--header svg path {
  fill: var(--primary);
}
/* Hover (desktop) */
@media (min-width: 1024px) {
  .social-icons--header a:hover {
    /* background: var(--primary); */
    /* color: #fff; */
    transform: scale(1.1);
  }
}
@media (max-width: 1024px) {
  .header-actions {
    display: none;
  }
  .mobile-menu .header-actions {
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }
}
/* ===== Mobile social icons ===== */
.social-icons--mobile {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.social-icons--mobile a {
  width: 48px;
  height: 48px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.social-icons--mobile svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* ===== Language switch ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
}

.lang-switch .lang {
  color: var(--text-dark);
  text-decoration: none;
  opacity: 0.6;
  transition: var(--transition-1);
}

.lang-switch .lang.active {
  opacity: 1;
  color: var(--primary);
  font-weight: 700;
}

.lang-switch .lang:hover {
  opacity: 1;
}

.lang-divider {
  opacity: 0.4;
}
.lang-switch--mobile {
  /* margin-bottom: 24px; */
  font-size: 14px;
}

@media (max-width: 1024px) {
  .lang-switch {
    justify-content: center;
  }
  .social-icons,
  .lang-switch--mobile {
    width: auto;
  }
  .mobile-menu .header-actions {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 12px;
  }
  /* .social-icons--header {
    gap: 5px;
  }
  .social-icons--header a {
    width: auto;
    height: auto;
  }
  .mobile-menu .header-actions {
    align-items: flex-start;
  } */
}
.whatsapp-button {
  position: fixed;
  right: 13px;
  bottom: 40px;
  transform: translate(-50%, -50%);
  background: #25d366; /*Ñ†Ð²ÐµÑ‚ ÐºÐ½Ð¾Ð¿ÐºÐ¸*/
  border-radius: 50%;
  width: 55px; /*ÑˆÐ¸Ñ€Ð¸Ð½Ð° ÐºÐ½Ð¾Ð¿ÐºÐ¸*/
  height: 55px; /*Ð²Ñ‹ÑÐ¾Ñ‚Ð° ÐºÐ½Ð¾Ð¿ÐºÐ¸*/
  color: #fff;
  text-align: center;
  line-height: 53px; /*Ñ†ÐµÐ½Ñ‚Ñ€Ð¾Ð²ÐºÐ° Ð¸ÐºÐ¾Ð½ÐºÐ¸ Ð² ÐºÐ½Ð¾Ð¿ÐºÐµ*/
  font-size: 35px; /*Ñ€Ð°Ð·Ð¼ÐµÑ€ Ð¸ÐºÐ¾Ð½ÐºÐ¸*/
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-button svg {
  width: 32px;
  height: 32px;
}
.whatsapp-button a {
  color: #fff;
}
.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #25d366; /*Ñ†Ð²ÐµÑ‚ Ð°Ð½Ð¸Ð¼Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ñ‹Ñ… Ð²Ð¾Ð»Ð½ Ð¾Ñ‚ ÐºÐ½Ð¾Ð¿ÐºÐ¸*/
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.whatsapp-button:after {
  animation-delay: 0.5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
