/* FONTS */
@font-face {
  font-family: "Bebas Neue";
  src: url("./Fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./Fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./Fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neutral Face";
  src: url("./Fonts/Neutral_face/NeutralFace.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neutral Face";
  src: url("./Fonts/Neutral_face/NeutralFace-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* BASE */
:root {
  --green: #15985a;
  --dark: #151918;
  --light: #f6f6f2;
  --white: #ffffff;
  --blue: #0e44f3;
  --text-main: rgba(21, 25, 24, 0.94);
  --text-soft: rgba(21, 25, 24, 0.68);
  --border: rgba(21, 25, 24, 0.12);
  --border-light: rgba(246, 246, 242, 0.14);
  --shadow-header: 0 14px 38px rgba(21, 25, 24, 0.08);
  --container: 1360px;
  --header-height: 30px;
  --section-gap: 32px;
  --section-padding-x: 48px;
}

* {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--light);
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  box-shadow: none;
}

section,
footer,
#contacts {
  scroll-margin-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

button {
  cursor: pointer;
}

main {
  padding-top: calc(var(--header-height) + 12px);
}

/* COMMON BUTTONS / UI */
.button_blue {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 246, 242, 0.28);
  border-radius: 18px;
  background: var(--blue);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.button_blue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  border: 1px solid var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.button_blue:hover {
  color: var(--blue);
  transform: translateY(-2px);
  border-color: var(--light);
}

.button_blue:hover::before {
  transform: scaleX(1);
}

/* HEADER / MOBILE MENU */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 32px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--green);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.nav a:hover {
  color: var(--light);
  transform: translateY(-1px);
}

.nav a:hover::before {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone:hover {
  color: var(--green);
}

.burger {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  border: 0;
  border-radius: 15px;
  background: var(--dark);
  color: #ffffff;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.burger::before {
  content: "≡";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -54%);
}

.burger.is-active::before {
  content: "×";
  font-size: 34px;
  transform: translate(-50%, -52%);
}

.burger:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  width: 100%;
  max-width: var(--container);
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--light);
  box-shadow: 0 18px 50px rgba(21, 25, 24, 0.18);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.mobile-nav span {
  color: var(--green);
}

.mobile-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-actions a {
  padding: 16px 20px;
  border-radius: 18px;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.mobile-actions a:first-child {
  border: 1px solid rgba(246, 246, 242, 0.16);
}

.mobile-actions a:last-child {
  background: var(--green);
  color: var(--light);
}

.mobile-header-consultation {
  display: none;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.mobile-socials .social-button {
  padding: 5px;
  width: 44px;
  height: 44px;
}

.mobile-socials .social-button svg {
  width: 20px;
  height: 20px;
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(246, 246, 242, 0.97);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(10px);
  min-height: var(--header-height);
  padding: 10px 18px 10px 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 188px;
  max-width: 188px;
  height: 58px;
}

.phone {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  font-size: 15px;
  font-weight: 650;
  color: rgba(21, 25, 24, 0.72);
}

.nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--text-main);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  font-size: 15px;
}

/* COMMON BUTTONS / UI */
.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.contact-link:hover {
  color: var(--green);
  transform: translateY(-1px);
  border-color: var(--green);
}

.contact-link:hover::before {
  transform: scaleX(1);
}

/* VIDEO BANNER */
.video-banner-section {
  min-height: calc(100svh - var(--header-height) - var(--section-gap));
  padding: 75px var(--section-padding-x) 25px;
  background: var(--light);
  display: flex;
  align-items: stretch;
}

.video-banner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  min-height: 100%;
  margin: 0 auto;
  padding: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--dark);
  color: var(--light);
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.12);
}

.video-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-banner-bg img,
.video-banner-bg video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(21, 25, 24, 0.78) 0%,
    rgba(21, 25, 24, 0.58) 34%,
    rgba(21, 25, 24, 0.22) 62%,
    rgba(21, 25, 24, 0.08) 100%
  );
}

.video-banner-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 36px;
  border: 1px solid rgba(246, 246, 242, 0.16);
  border-radius: 28px;
}

.video-banner-content h2 {
  margin: 0;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-banner-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  margin-top: 30px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.video-banner-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.video-banner-button:hover {
  color: var(--green);
  transform: translateY(-2px);
  border-color: var(--light);
}

.video-banner-button:hover::before {
  transform: scaleX(1);
}

/* ABOUT */
.about-content {
  display: grid;
  gap: 18px;
  padding-top: 30px;
}

/* SERVICES */
.services-section {
  min-height: calc(100svh - var(--header-height));
  padding: 25px var(--section-padding-x);
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.services-top {
  width: auto;
  margin: -20px -40px 14px;
  padding: 22px 32px 28px;
  border-radius: 30px 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #0f4cdd 0%, #159a63 55%, #1fb879 100%);
}

.services-search-title {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
}

.services-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(21, 25, 24, 0.36);
  transform: translateY(-50%);
  pointer-events: none;
}

.services-head {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
}

.services-label,
.about-label {
  margin: 0;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: 999px;
  background: rgba(246, 246, 242, 0.6);
  color: rgba(21, 25, 24, 0.72);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.services-label::before,
.partners-label::before,
.reviews-label::before,
.about-label::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.services-head h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.services-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 48%;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.98) 74%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.services-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 68, 243, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(21, 25, 24, 0.08);
}

.services-card:hover .services-card-icon {
  transform: translateX(4px);
  background: var(--blue);
}

.services-card-block {
  display: flex;
  justify-content: space-between;
}

.services-card-more:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.services-card:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1.03);
}

.services-bottom {
  position: relative;
  z-index: 2;
  margin: 10px -40px 0;
  padding: 16px 32px 18px;
  background: linear-gradient(135deg, #0f4cdd 0%, #159a63 55%, #1fb879 100%);
  color: var(--light);
  text-align: center;
  flex: 0 0 auto;
}

.services-bottom p,
.partners-bottom p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.services-bottom span,
.partners-bottom span {
  display: block;
  max-width: 920px;
  margin: 8px auto 0;
  color: rgba(246, 246, 242, 0.92);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
}

/* PARTNERS */
.partners-section {
  min-height: calc(100svh - var(--header-height));
  padding: 25px var(--section-padding-x);
  background: var(--light);
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.partners-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #eeeeef;
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.1);
}

.partners-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: rgba(21, 25, 24, 0.08);
}

.partners-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.partners-content {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.partners-label {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: 999px;
  background: rgba(246, 246, 242, 0.6);
  color: rgba(21, 25, 24, 0.72);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.partners-content h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.partners-list {
  display: grid;
  gap: 10px;
}

.partners-card::after {
  content: ">";
  position: absolute;
  right: -5px;
  bottom: -35px;
  color: rgba(14, 68, 243, 0.06);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.partners-card:hover {
  transform: translateX(4px);
  border-color: rgba(14, 68, 243, 0.2);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(21, 25, 24, 0.08);
}

.partners-card:hover::after {
  color: rgba(14, 68, 243, 0.1);
  transform: translateX(10px);
}

.partners-card:hover .partners-card-icon {
  transform: translateX(4px);
  background: var(--green);
}

.partners-bottom {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin: 0 -32px;
  padding: 10px 32px 15px;
  background: linear-gradient(135deg, #0f4cdd 0%, #159a63 55%, #1fb879 100%);
  color: var(--light);
  text-align: center;
}

/* CONSULTATION */
.consultation-section {
  max-height: calc(100svh - var(--header-height));
  padding: 25px var(--section-padding-x);
  background: var(--light);
  display: flex;
  align-items: center;
}

.consultation-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.consultation-banner {
  position: relative;
  min-height: 390px;
  padding: 48px 54px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(90deg, #0f4cdd 0%, #159a63 55%, #1fb879 100%);
  box-shadow: 0 20px 60px rgba(21, 25, 24, 0.1);
}

.consultation-copy {
  max-width: 430px;
  color: var(--light);
}

.consultation-copy h2 {
  margin: 0 0 22px;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-copy p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.consultation-card {
  width: min(100%, 650px);
  min-height: 320px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 22px;
  border: 1px solid rgba(21, 25, 24, 0.08);
  border-radius: 28px;
  background: #dcdcdc;
  box-shadow: 0 24px 60px rgba(21, 25, 24, 0.14);
}

.consultation-form {
  display: flex;
  align-items: stretch;
}

.consultation-form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.consultation-form-fields input[type="text"],
.consultation-form-fields input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: #f7f7f7;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.consultation-form-fields input[type="text"]::placeholder,
.consultation-form-fields input[type="tel"]::placeholder {
  color: rgba(21, 25, 24, 0.45);
}

.consultation-form-fields input[type="text"]:focus,
.consultation-form-fields input[type="tel"]:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(25, 152, 90, 0.16);
}

.consultation-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(21, 25, 24, 0.72);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
}

.consultation-checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 17px;
  accent-color: #19985a;
}

.consultation-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  margin-top: 4px;
  padding: 15px 24px;
  border: 1px solid #19985a;
  border-radius: 999px;
  background: #19985a;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease;
}

.consultation-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.consultation-submit:hover {
  color: #19985a;
  transform: translateY(-1px);
  border-color: #19985a;
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.14);
}

.consultation-submit:hover::before {
  transform: scaleX(1);
}

.consultation-manager {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #8f8f8f;
}

.consultation-manager-photo {
  width: 100%;
  height: 198px;
  background: #9b9b9b;
}

.consultation-manager-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.consultation-manager-info {
  padding: 16px 16px 18px;
  background: rgba(21, 25, 24, 0.55);
}

.consultation-manager-info strong {
  display: block;
  margin-bottom: 6px;
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.1;
}

.consultation-manager-info span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

/* REVIEWS */
.reviews-section {
  max-height: calc(100svh - var(--header-height));
  padding: 25px var(--section-padding-x);
  background: var(--light);
  display: flex;
  align-items: stretch;
}

.reviews-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #eeeeef;
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.1);
}

.reviews-head {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.reviews-label {
  margin: 0;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: 999px;
  background: rgba(246, 246, 242, 0.7);
  color: rgba(21, 25, 24, 0.72);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.reviews-head h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 4.5vw, 84px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-arrow:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.reviews-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-video-card {
  min-width: calc((100% - 54px) / 4);
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 24, 0.08);
  border-radius: 24px;
  background: #ffffff;
  color: var(--dark);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.review-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 68, 243, 0.2);
  box-shadow: 0 18px 44px rgba(21, 25, 24, 0.08);
}

.review-video-info {
  min-height: 76px;
  margin-bottom: 14px;
}

.review-video-info h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 1.6vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.review-video-info p {
  margin: 10px 0 0;
  color: rgba(21, 25, 24, 0.66);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: none;
}

.review-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(21, 25, 24, 0.08),
    rgba(21, 25, 24, 0.02)
  );
}

.review-video video,
.review-video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.review-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 25, 24, 0.02) 0%,
    rgba(21, 25, 24, 0.12) 100%
  );
  pointer-events: none;
}

.review-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(246, 246, 242, 0.92);
  color: var(--green);
  font-size: 24px;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(21, 25, 24, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.review-play:hover {
  background: var(--green);
  color: var(--light);
  transform: translate(-50%, -50%) scale(1.06);
}

/* FOOTER */
.footer {
  padding: 25px var(--section-padding-x);
  background: var(--light);
}

.footer-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 38px 48px;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 0.8fr 1fr 1fr;
  gap: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.72),
      rgba(246, 246, 242, 0.96)
    ),
    var(--light);
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.08);
}

.footer-logo {
  width: 158px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.03);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contacts a,
.footer-contacts p {
  margin: 0;
  color: rgba(21, 25, 24, 0.68);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  text-transform: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: var(--green);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-contacts a + a,
.footer-contacts a + p {
  margin-top: 10px;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid var(--green);
  border-radius: 50%;

  background: var(--green);
  color: #ffffff;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease;
}

.social-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.social-button svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
  color: var(--light);
  transition: transform 0.3s ease;
}

.social-button:hover {
  color: var(--green);
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.14);
}

.social-button:hover::before {
  transform: scaleX(1);
  background: var(--light);
}

.social-button:hover svg {
  transform: scale(1.05);
  color: var(--green);
}

.social-button:active {
  transform: translateY(0) scale(0.97);
}

/* FOOTER */
.footer-bottom {
  width: 100%;
  max-width: var(--container);
  margin: 14px auto 0;
  padding: 0 8px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(21, 25, 24, 0.48);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-transform: none;
}

/* CONSULTATION */
.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 3300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.consultation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consultation-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 24, 0.64);
  backdrop-filter: blur(8px);
}

.consultation-modal-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  max-height: calc(100svh - 48px);
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.86),
      rgba(246, 246, 242, 0.98)
    ),
    var(--light);
  color: var(--dark);
  box-shadow: 0 30px 100px rgba(21, 25, 24, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.consultation-modal.is-open .consultation-modal-window {
  transform: translateY(0) scale(1);
}

.consultation-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  font-size: 30px;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.consultation-modal-close:hover {
  transform: rotate(90deg);
  background: var(--green);
}

.consultation-modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.consultation-modal-text h2 {
  max-width: 520px;
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-modal-text p:not(.consultation-modal-label) {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(21, 25, 24, 0.68);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.consultation-modal-form {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.consultation-modal-form label span {
  display: block;
  margin-bottom: 8px;
  color: rgba(21, 25, 24, 0.66);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.consultation-modal-form input[type="text"],
.consultation-modal-form input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(21, 25, 24, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.consultation-modal-form input::placeholder {
  color: rgba(21, 25, 24, 0.42);
}

.consultation-modal-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(21, 152, 90, 0.16);
}

.consultation-modal-form label + label {
  margin-top: 14px;
}

.consultation-modal-checkbox {
  margin: 18px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.consultation-modal-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.consultation-modal-checkbox span {
  margin: 0;
  color: rgba(21, 25, 24, 0.62);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-modal-submit {
  width: 100%;
  margin-top: 0;
}

/* MODALS */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 24, 0.62);
  backdrop-filter: blur(8px);
}

.service-modal-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  max-height: calc(100svh - 48px);
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 24, 0.12);
  border-radius: 32px;
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 30px 100px rgba(21, 25, 24, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal.is-open .service-modal-window {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  font-size: 30px;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.service-modal-close:hover {
  transform: rotate(90deg);
  background: var(--green);
}

.service-modal-content {
  position: relative;
  z-index: 2;
  max-height: calc(100svh - 116px);
  padding: 36px 36px 28px;
  overflow-y: auto;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.service-modal-label {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease;
}

.service-modal-label::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.service-modal-label:hover {
  color: var(--green);
  transform: translateY(-1px);
  border-color: var(--green);
  box-shadow: 0 10px 20px rgba(21, 25, 24, 0.1);
}

.service-modal-label:hover::before {
  transform: scaleX(1);
}

.service-modal-content h2 {
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.service-modal-intro {
  margin: 24px 0 14px;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

.service-modal-text {
  color: rgba(21, 25, 24, 0.78);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

.service-modal-text p {
  margin: 0;
}

.service-modal-text p + p {
  margin-top: 12px;
}

.service-modal-text ul {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.service-modal-text li {
  position: relative;
  padding-left: 20px;
  color: rgba(21, 25, 24, 0.76);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.service-modal-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.service-modal-result {
  margin-top: 18px !important;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(21, 152, 90, 0.1);
  color: var(--dark) !important;
  font-weight: 700 !important;
}

.service-modal-order {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  min-height: 56px;
  margin: 30px 0 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease;
}

.service-modal-order::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--light);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.service-modal-order:hover {
  color: var(--green);
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.14);
}

.service-modal-order:hover::before {
  transform: scaleX(1);
}

/* SERVICES */
.services-search {
  position: relative;
  width: 100%;
  max-width: 760px;
}

.services-search input {
  width: 100%;
  height: 46px;
  padding: 0 62px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  box-shadow: 0 10px 24px rgba(21, 25, 24, 0.12);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.services-search input::placeholder {
  color: rgba(21, 25, 24, 0.5);
}

.services-search input:focus {
  border-color: rgba(14, 68, 243, 0.38);
  box-shadow: 0 10px 24px rgba(14, 68, 243, 0.14);
}

.services-search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.services-search-button:hover {
  background: var(--green);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 24px rgba(14, 68, 243, 0.24);
}

.services-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(21, 25, 24, 0.16);
}

.services-search-suggestions.is-open {
  display: block;
}

/* OTHER */
.search-suggestion {
  width: 100%;
  padding: 12px 14px;
  display: block;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.search-suggestion:hover {
  background: rgba(14, 68, 243, 0.08);
  color: var(--blue);
}

/* MODALS */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 3400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.quiz-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quiz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 24, 0.66);
  backdrop-filter: blur(8px);
}

.quiz-modal-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  max-height: calc(100svh - 48px);
  padding: 34px;
  overflow-y: auto;
  border-radius: 32px;
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 30px 100px rgba(21, 25, 24, 0.28);
}

.quiz-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.quiz-modal-close:hover {
  transform: rotate(90deg);
  background: var(--green);
}

.quiz-modal-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.quiz-modal-head h2 {
  max-width: 560px;
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 760;
  line-height: 1.08;
}

.quiz-product {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 25, 24, 0.08);
}

.quiz-product span {
  display: block;
  margin-bottom: 6px;
  color: rgba(21, 25, 24, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.quiz-product strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.2;
}

.quiz-modal-body {
  margin-top: 26px;
}

.quiz-step-title {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.2;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 16px;
  background: #ffffff;
  color: var(--dark);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.quiz-option:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.quiz-field {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(21, 25, 24, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--dark);
  font-size: 15px;
  outline: none;
}

.quiz-next {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.quiz-next:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.quiz-step-number {
  width: fit-content;
  margin: 0 0 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 68, 243, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.quiz-option-field {
  padding: 16px;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 16px;
  background: #ffffff;
}

.quiz-option-field label span {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.quiz-inline-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(21, 25, 24, 0.12);
  border-radius: 14px;
  background: #f7f7f7;
  color: var(--dark);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quiz-inline-input:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 68, 243, 0.12);
}

.quiz-option-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.quiz-option-submit:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 3600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 25, 24, 0.66);
  backdrop-filter: blur(8px);
}

.policy-modal-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  max-height: calc(100svh - 48px);
  padding: 36px;
  overflow-y: auto;
  border-radius: 30px;
  background: #ffffff;
  color: var(--dark);
  box-shadow: 0 30px 100px rgba(21, 25, 24, 0.28);
}

.policy-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.policy-modal-content {
  clear: both;
  max-width: 860px;
  margin: 0 auto;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.policy-modal-content h2 {
  margin: 18px 0 8px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.policy-modal-content h3 {
  margin: 28px 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.policy-modal-content p {
  margin: 0 0 10px;
  color: rgba(21, 25, 24, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

/* OTHER */
.policy-approve {
  margin-bottom: 4px !important;
  text-align: right;
  font-size: 12px !important;
}

.policy-doc-subtitle {
  margin-bottom: 22px !important;
  color: rgba(21, 25, 24, 0.7);
  font-weight: 700;
}

.policy-bullet {
  padding-left: 18px;
}

/* COMMON BUTTONS / UI */
.contact-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 18px;
  background: var(--green);
  color: var(--light);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
  min-height: 46px;
  padding: 14px 22px;
  font-size: 15px;
}

/* VIDEO BANNER */
.video-banner::after,
.services-inner::after,
.consultation-banner::after {
  content: "⌃";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.12);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 230px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(90deg);
}

.video-banner::after {
  right: 5%;
  top: 8%;
}

/* SERVICES */
.services-inner::after {
  right: -10px;
  top: 110px;
  color: rgba(14, 68, 243, 0.055);
}

/* CONSULTATION */
.consultation-banner::after {
  left: 22%;
  top: 0;
  color: rgba(255, 255, 255, 0.15);
}

/* VIDEO BANNER */
.video-banner-subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(246, 246, 242, 0.86);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(17px, 1.35vw, 22px);
}

/* SERVICES */
.services-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #eeeeef;
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.1);
  padding: 20px 36px 0;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  min-height: 0;
  gap: 12px;
}

.services-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 24, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: var(--dark);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 250px;
  padding: 22px;
}

.services-card-icon {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  width: 40px;
  height: 40px;
}

.services-card h3 {
  position: relative;
  z-index: 4;
  margin: 0;
  padding-right: 44px;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  max-width: 250px;
  font-size: clamp(20px, 1.28vw, 24px);
}

.services-card p {
  position: relative;
  z-index: 4;
  margin: 10px 0 0;
  color: rgba(21, 25, 24, 0.66);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: none;
  max-width: 280px;
  font-size: clamp(13px, 0.92vw, 14.5px);
  line-height: 1.38;
}

.services-card-more {
  margin-top: auto;
  border: 0;
  background: transparent;
  color: var(--green);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  font-size: 16px;
}

.services-guarantee {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

/* PARTNERS */
.partners-title-wrap {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(190px, 260px);
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.partners-title {
  margin: 0 !important;
  display: grid;
  gap: 2px;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 3.4vw, 60px) !important;
  font-weight: 800 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase;
}

.partners-title span {
  display: block;
}

.partners-title-logo {
  width: 100%;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 25, 24, 0.08);
}

.partners-title-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.partners-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 24, 0.08);
  border-radius: 0 0 26px 26px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 96px;
  padding: 17px 74px 17px 22px;
}

.partners-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--dark);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(18px, 1.22vw, 22px);
}

.partners-card p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 7px 0 0;
  color: rgba(21, 25, 24, 0.66);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-transform: none;
  font-size: 13.5px;
  line-height: 1.45;
}

.partners-card-icon {
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  width: 40px;
  height: 40px;
}

/* ABOUT */
.about-section {
  padding: 25px var(--section-padding-x) 25px;
  background: var(--light);
}

.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  padding: 54px 56px;
  border-radius: 34px;
  overflow: hidden;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--border);
  background: #eeeeef;
  color: var(--dark);
  box-shadow: 0 0 80px rgba(21, 25, 24, 0.1);
}

.about-inner::before,
.about-inner::after {
  content: ">";
  position: absolute;
  z-index: 1;

  width: auto;
  height: auto;

  border-radius: 0;
  background: transparent;

  pointer-events: none;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 0.8;
}

.about-inner::before {
  right: 28px;
  top: 22px;

  color: rgba(14, 68, 243, 0.07);
  font-size: 280px;
}

.about-inner::after {
  left: 46px;
  bottom: 18px;

  color: rgba(21, 152, 90, 0.08);
  font-size: 220px;
}
.about-head,
.about-content {
  position: relative;
  z-index: 3;
}

.about-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-head img {
  display: block;
  width: clamp(220px, 20vw, 420px);
  height: auto;
  margin: 16px 0 18px;
}

.about-head h2 {
  max-width: 560px;
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 4.4vw, 50px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.about-content p {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(16px, 1.25vw, 19px);
  color: rgba(21, 25, 24, 0.72);
}

.about-head::after {
  content: "⌃";
  position: absolute;
  left: -12px;
  bottom: -160px;
  z-index: -1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.06);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 230px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(90deg);
  display: none;
}

.about-more {
  display: grid;
  gap: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.25s ease;
}

.about-content.is-open .about-more {
  max-height: 600px;
  opacity: 1;
}

.about-more-button {
  position: relative;
  overflow: hidden;

  margin-top: 22px;
  padding: 14px 20px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: none;
  border-radius: 999px;
  color: var(--green);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease;
}

.about-more-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: var(--light);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.about-more-button span {
  position: relative;
  z-index: 1;
}

.about-more-button:hover {
  color: var(--green);
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.14);
}

.about-more-button:hover::before {
  transform: scaleX(1);
}

.about-more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  line-height: 1;

  transition: transform 0.3s ease;
}

.about-content.is-open .about-more-arrow {
  transform: rotate(180deg);
}

/* SERVICES */
.services-card::after {
  content: ">";
  position: absolute;
  left: 15%;
  bottom: 10%;
  z-index: 1;
  color: rgba(14, 68, 243, 0.055);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 128px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-12px);
}

.services-card img {
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  width: 50%;
  max-width: 154px;
  position: relative;
  z-index: 3;
}

.services-card-more,
.services-card-block {
  position: relative;
  z-index: 4;
}

.services-card-icon,
.partners-card-icon {
  display: grid;
  place-items: center;
  font-size: 0;
}

.services-card-icon::before,
.partners-card-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  display: block;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 2px;
  transform: translate(-62%, -50%) rotate(45deg);
}

.services-card:hover .services-card-icon::before,
.partners-card:hover .partners-card-icon::before {
  transform: translate(-52%, -50%) rotate(45deg);
}

/* REVIEWS */
.reviews-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--light);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  position: relative;
  display: grid;
  place-items: center;
  font-size: 0;
}

.reviews-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  border-radius: 2px;
  margin: 10px 0;
}

.reviews-prev::before {
  transform: translateX(3px) rotate(-135deg);
}

.reviews-next::before {
  transform: translateX(-3px) rotate(45deg);
}

/* CONSULTATION */
.consultation-banner::before {
  content: ">";
  position: absolute;
  bottom: -15%;
  right: -3%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.14);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 230px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.consultation-copy,
.consultation-card {
  z-index: 3;
}

/* FOOTER */
.footer-brand p {
  margin: 22px 0 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  text-transform: none;
  max-width: 420px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(21, 25, 24, 0.74);
}

.footer-policy-link {
  font: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(21, 25, 24, 0.68);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.footer-policy-link:hover {
  color: var(--green);
}

.quiz-step-text {
  margin: 8px 0 18px;
  max-width: 560px;
  color: rgba(21, 25, 24, 0.62);
  font-size: 16px;
  line-height: 1.45;
}

.quiz-info-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quiz-info-option {
  position: relative;
  min-height: 64px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--dark);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quiz-info-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-info-check {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(21, 25, 24, 0.18);
  border-radius: 50%;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.quiz-info-title {
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.quiz-info-option:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 68, 243, 0.45);
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.08);
}

.quiz-info-option:has(input:checked) {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(14, 68, 243, 0.1);
}

.quiz-info-option:has(input:checked) .quiz-info-check {
  border-color: var(--blue);
  background: radial-gradient(circle, var(--blue) 42%, transparent 45%);
  box-shadow: 0 0 0 4px rgba(14, 68, 243, 0.08);
}

.quiz-info-option-wide {
  grid-column: 1 / -1;
}

.quiz-single-input-wrap {
  margin-top: 16px;
}

.quiz-single-input {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--dark);
  font: inherit;
  font-size: 16px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.quiz-single-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 68, 243, 0.12);
}

.quiz-single-hint {
  display: block;
  margin-top: 9px;
  color: rgba(21, 25, 24, 0.52);
  font-size: 14px;
  line-height: 1.35;
}

.quiz-single-input-wrap.is-hidden {
  display: none;
}

.quiz-next-button {
  width: 100%;
  margin-top: 16px;
  padding: 16px 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.25s ease,
    background 0.3s ease;
}

.quiz-next-button:hover {
  background: #ffffff;
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(21, 25, 24, 0.14);
}

.quiz-info-option:has(input[value="skip"]:checked) {
  border-color: var(--green);
  background: rgba(21, 152, 90, 0.08);
  box-shadow: 0 10px 26px rgba(21, 152, 90, 0.12);
}

.quiz-info-option:has(input[value="skip"]:checked) .quiz-info-check {
  border-color: var(--green);
  background: radial-gradient(circle, var(--green) 42%, transparent 45%);
  box-shadow: 0 0 0 4px rgba(21, 152, 90, 0.08);
}

.quiz-info-option:has(input[value="skip"]:checked) .quiz-info-title {
  color: var(--green);
}

/*THANKS-MODAL*/
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thanks-modal.is-open {
  display: flex;
}

.thanks-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.thanks-modal-window {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 40px 32px;
  border-radius: 24px;
  background: #ffffff;
  color: #111111;
  text-align: center;
}

.thanks-modal-window h2 {
  margin: 0 0 12px;
}

.thanks-modal-window p {
  margin: 0 0 24px;
}

.thanks-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1280px) {
  /* BASE */
  :root {
    --section-gap: 30px;
  }

  /* HEADER / MOBILE MENU */
  .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  .phone {
    font-size: 17px;
  }

  /* COMMON BUTTONS / UI */
  .contact-link {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
  }

  /* CONSULTATION */
  .consultation-card {
    right: 34px;
    width: min(100%, 600px);
    grid-template-columns: 1fr 190px;
  }

  .consultation-copy {
    max-width: 360px;
  }
}

@media (max-width: 1200px) {
  /* REVIEWS */
  .review-video-card {
    min-width: calc((100% - 36px) / 3);
  }

  /* HEADER / MOBILE MENU */
  .header-inner {
    gap: 14px;
  }

  .nav a {
    font-size: 14px;
  }

  .phone {
    font-size: 16px;
  }

  /* COMMON BUTTONS / UI */
  .contact-link {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  /* HEADER / MOBILE MENU */
  .site-header {
    padding: 0 16px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-header-consultation {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 44px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    border-radius: 16px;
    background: var(--green);
    color: var(--light);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.3s ease,
      transform 0.3s ease,
      border-color 0.3s ease;
  }

  .mobile-header-consultation::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--light);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
  }

  .mobile-header-consultation:hover {
    color: var(--green);
    transform: translateY(-1px);
    border-color: var(--green);
  }

  .mobile-header-consultation:hover::before {
    transform: scaleX(1);
  }

  .logo {
    width: 170px;
    max-width: 170px;
    height: 54px;
  }

  /* VIDEO BANNER */
  .video-banner-section,
  .services-section,
  .partners-section,
  .consultation-section,
  .reviews-section {
    height: auto;
    max-height: none;
    min-height: auto;
    padding: 20px var(--section-padding-x);
    overflow: visible;
  }

  .video-banner {
    min-height: 560px;
    padding: 40px 34px;
  }

  .video-banner-content {
    max-width: 520px;
    padding: 32px;
  }

  /* ABOUT */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 34px;
  }

  .about-head h2 {
    max-width: 760px;
  }

  /* SERVICES */
  .services-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-card img {
    width: 54%;
    max-width: 180px;
  }

  /* PARTNERS */
  .partners-inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    padding: 34px 28px 0;
  }

  .partners-media {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 360px;
    min-height: 360px;
    border-radius: 26px;
  }

  .partners-content {
    display: contents;
  }

  .partners-label {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .partners-title {
    margin: 0;
    font-size: clamp(46px, 5vw, 64px);
    line-height: 0.95;
  }

  .partners-title span {
    display: block;
  }

  .partners-title-logo {
    width: 220px;
    min-width: 220px;
  }

  .partners-title-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .partners-list {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .partners-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0 -28px;
    padding: 24px 28px 28px;
  }

  /* CONSULTATION */
  .consultation-banner {
    min-height: auto;
    padding: 40px 28px 32px;
    gap: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .consultation-copy {
    max-width: none;
  }

  .consultation-copy p {
    max-width: none;
  }

  .consultation-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr 210px;
  }

  /* REVIEWS */
  .reviews-head {
    grid-template-columns: 1fr auto;
  }

  .reviews-label {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .review-video-card {
    min-width: calc((100% - 18px) / 2);
  }

  /* FOOTER */
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 40px 36px;
  }

  /* BASE */
  :root {
    --section-padding-x: 24px;
    --header-height: 30px;
  }

  /* SERVICES */
  .services-card {
    min-height: 300px;
  }

  /* PARTNERS */
  .partners-title-wrap {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 28px;
    grid-template-columns: minmax(0, max-content) minmax(180px, 250px);
    margin: 20% 0 18px;
    justify-content: start;
  }

  /* ABOUT */
  .about-section {
    padding: 25px var(--section-padding-x) var(--section-gap);
  }

  .about-inner::before {
    right: -22px;
    top: -20px;
    font-size: 220px;
  }

  .about-inner::after {
    left: 4%;
    bottom: -70px;
    font-size: 190px;
  }

  /* CONSULTATION */
  .consultation-banner::before {
    left: 50%;
    top: 34%;
    font-size: 190px;
  }
}

@media (max-width: 768px) {
  /* VIDEO BANNER */
  .video-banner-section {
    padding: 35px var(--section-padding-x) 25px;
  }

  /* CONSULTATION */

  .consultation-banner {
    padding: 28px 18px 22px;
    border-radius: 26px;
  }

  .consultation-card {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 22px;
  }

  .consultation-copy h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

  .consultation-copy p {
    font-size: 14px;
    line-height: 1.45;
  }

  .consultation-form-fields {
    gap: 14px;
  }

  .consultation-form-fields input[type="text"],
  .consultation-form-fields input[type="tel"] {
    height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .consultation-checkbox {
    font-size: 12px;
  }

  .consultation-submit {
    width: 100%;
    font-size: 14px;
  }

  .consultation-manager {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .consultation-manager-photo {
    height: 220px;
  }

  .consultation-manager-info strong {
    font-size: 18px;
  }

  /* PARTNERS */
  .partners-title-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .partners-title-logo {
    max-width: 240px;
  }
}

@media (max-width: 640px) {
  /* HEADER / MOBILE MENU */
  .site-header {
    padding: 0 10px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 8px 10px;
    border-radius: 0 0 20px 20px;
    gap: 10px;
  }

  .burger {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .mobile-menu {
    padding: 16px;
    border-radius: 24px;
  }

  .mobile-nav a {
    font-size: 17px;
  }

  .mobile-actions a {
    font-size: 12px;
  }

  .logo {
    width: 124px;
    max-width: 124px;
    height: 44px;
  }

  .mobile-header-consultation {
    border-radius: 14px;
    max-width: 154px;
    min-height: 40px;
    padding: 11px 10px;
    font-size: 11px;
  }

  /* VIDEO BANNER */
  .video-banner {
    min-height: 560px;
    padding: 24px 20px;
    align-items: flex-end;
    border-radius: 26px;
  }

  .video-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(21, 25, 24, 0.12) 0%,
      rgba(21, 25, 24, 0.42) 42%,
      rgba(21, 25, 24, 0.84) 100%
    );
  }

  .video-banner-content {
    width: 100%;
    max-width: none;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .video-banner-content h2 {
    font-size: clamp(44px, 10vw, 48px);
    line-height: 1.08;
  }

  .video-banner-subtitle {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.35;
  }

  .video-banner-button {
    width: 100%;
    min-height: 54px;
    margin-top: 24px;
    padding: 16px 20px;
    font-size: 13px;
  }

  /* ABOUT */
  .about-label {
    margin-bottom: 18px;
    padding: 9px 16px;
    font-size: 11px;
  }

  .about-head img {
    width: min(100%, 300px);
    margin: 14px 0 16px;
  }

  .about-head h2 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }

  .about-content {
    gap: 14px;
    padding-top: 0;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.45;
  }

  /* SERVICES */
  .services-top {
    margin-bottom: 16px;
  }

  .services-search {
    max-width: 100%;
  }

  .services-search input {
    height: 44px;
    padding-left: 40px;
    font-size: 13px;
  }

  .services-inner {
    border-radius: 26px;
  }

  .services-head {
    margin-bottom: 20px;
    gap: 14px;
  }

  .services-label {
    padding: 9px 16px;
    font-size: 11px;
  }

  .services-head h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-card::before {
    height: 52%;
  }

  .services-card img {
    width: 56%;
    max-width: 160px;
    bottom: 8px;
    opacity: 1;
    mix-blend-mode: normal;
    filter: none;
  }

  .services-bottom {
    margin: 14px -40px 0;
    padding: 22px 18px 26px;
  }

  .services-bottom p,
  .partners-bottom p {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

  .services-bottom span,
  .partners-bottom span {
    font-size: 15px;
    line-height: 1.35;
  }

  .quiz-info-options {
    grid-template-columns: 1fr;
  }

  .quiz-info-option {
    min-height: 60px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .quiz-step-text {
    font-size: 15px;
  }

  /* PARTNERS */
  .partners-inner {
    display: flex;
    flex-direction: column;
    padding: 28px 18px 0;
    gap: 16px;
  }

  .partners-content {
    display: contents;
  }

  .partners-label {
    order: 1;
    margin: 0;
  }

  .partners-media {
    order: 2;
    width: 100%;
    min-height: 320px;
    height: 320px;
    border-radius: 22px;
  }

  .partners-title-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .partners-title span {
    display: block;
  }

  .partners-card {
    padding: 20px 68px 20px 18px;
    border-radius: 20px;
  }

  /* REVIEWS */
  .reviews-inner {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .reviews-head {
    margin-bottom: 22px;
    gap: 18px;
  }

  .reviews-head h2 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.08;
  }

  .reviews-controls {
    gap: 8px;
  }

  .reviews-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-video-card {
    min-width: 100%;
    padding: 20px;
    border-radius: 22px;
  }

  .review-video-info {
    min-height: auto;
    margin-bottom: 16px;
  }

  .review-video-info h3 {
    font-size: 26px;
  }

  .review-video-info p {
    font-size: 13px;
  }

  .review-video {
    aspect-ratio: 9 / 13;
  }

  .review-play {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  /* FOOTER */
  .footer {
    padding: 0 12px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 22px 28px;
    border-radius: 26px;
  }

  .footer-column h3 {
    font-size: 28px;
  }

  .footer-socials {
    gap: 9px;
  }

  .social-button {
    width: 44px;
    height: 44px;
  }

  .social-button svg {
    width: 20px;
    height: 20px;
  }

  /* COMMON BUTTONS / UI */
  .button_blue {
    width: 100%;
    min-height: 54px;
    padding: 18px 20px;
    border-radius: 18px;
    font-size: 13px;
  }

  /* CONSULTATION */
  .consultation-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .consultation-modal-window {
    max-height: none;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    border-radius: 26px;
    gap: 22px;
  }

  .consultation-modal-close {
    right: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .consultation-modal-text h2 {
    padding-right: 44px;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
  }

  .consultation-modal-text p:not(.consultation-modal-label) {
    font-size: 14px;
  }

  .consultation-modal-form {
    padding: 22px;
    border-radius: 24px;
  }

  .consultation-modal-submit {
    min-height: 56px;
    font-size: 13px;
    white-space: normal;
  }

  /* MODALS */
  .service-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .service-modal-window {
    max-height: none;
    padding: 16px;
    border-radius: 26px;
  }

  .service-modal-content {
    max-height: none;
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .service-modal-close {
    right: 16px;
    top: 16px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .service-modal-content h2 {
    padding-right: 44px;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.08;
  }

  .service-modal-text,
  .service-modal-text li {
    font-size: 13px;
  }

  .service-modal-order {
    max-width: none;
    min-height: 56px;
    font-size: 16px;
  }

  .quiz-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .quiz-modal-window {
    max-height: none;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .quiz-modal-close {
    right: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .quiz-product strong {
    font-size: 15px;
  }

  .policy-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .policy-modal-window {
    max-height: none;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .policy-modal-content p {
    font-size: 13px;
  }

  /* BASE */
  :root {
    --section-padding-x: 12px;
    --section-gap: 26px;
    --header-height: 66px;
  }

  main {
    padding-top: calc(var(--header-height) + 8px);
  }

  /* ABOUT */
  .about-content p:first-child {
    font-size: 18px;
  }

  /* SERVICES */
  .services-card {
    padding: 22px;
    border-radius: 18px;
    min-height: 330px;
  }

  .services-card-icon,
  .partners-card-icon {
    width: 42px;
    height: 42px;
  }

  .services-card h3 {
    max-width: 250px;
    line-height: 1.12;
    font-size: 27px;
  }

  .services-card p {
    line-height: 1.45;
    font-size: 15px;
  }

  .services-card-more {
    font-size: 14px;
  }

  .services-guarantee {
    margin-bottom: 12px;
    font-size: 12px;
  }

  /* PARTNERS */
  .partners-title-wrap {
    padding: 0;
    order: 3;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partners-title {
    margin: 0;
    font-size: clamp(40px, 11.5vw, 54px) !important;
    line-height: 0.98 !important;
  }

  .partners-title-logo {
    width: 190px;
    min-width: 0;
    max-width: 230px;
    padding: 15px 16px;
    border-radius: 20px;
  }

  .partners-list {
    width: 100%;
    display: grid;
    gap: 12px;
    order: 4;
  }

  .partners-bottom {
    margin: 0 -18px;
    padding: 22px 18px 26px;
    order: 5;
  }

  .partners-card h3 {
    font-size: 22px;
  }

  .partners-card p {
    font-size: 15px;
  }

  /* VIDEO BANNER */
  .video-banner::after,
  .services-inner::after,
  .consultation-banner::after,
  .about-head::after {
    font-size: 170px;
  }

  /* ABOUT */
  .about-section {
    padding-top: 26px;
    padding: 26px var(--section-padding-x) var(--section-gap);
  }

  .about-inner {
    padding: 34px 22px;
    border-radius: 26px;
  }

  .about-inner::before {
    right: -36px;
    top: -14px;
    font-size: 170px;
  }

  .about-inner::after {
    left: -8px;
    bottom: -48px;
    font-size: 145px;
  }

  /* SERVICES */
  .services-card::after {
    right: 18%;
    bottom: 14%;
    font-size: 116px;
  }

  .services-card-icon::before,
  .partners-card-icon::before,
  .reviews-arrow::before {
    width: 12px;
    height: 12px;
    border-top-width: 4px;
    border-right-width: 4px;
  }

  /* CONSULTATION */
  .consultation-banner::before {
    left: 70%;
    top: 22%;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.11);
  }

  /* FOOTER */
  .footer-brand p {
    font-size: 17px;
  }

  .footer-policy-link {
    font-size: 14px;
  }
}
