:root {
  --bg-dark: #050505;
  --bg-header: rgba(0, 0, 0, 0.92);
  --text-white: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.88);
  --text-placeholder: rgba(255, 255, 255, 0.42);
  --accent: #d39a49;
  --accent-soft: rgba(211, 154, 73, 0.45);
  --border-soft: rgba(211, 154, 73, 0.55);
  --card-border: rgba(255, 255, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}


.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: #4b4d67;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.logo-text-white {
  color: #ffffff;
}

.logo-text-accent {
  color: var(--accent);
}

.desktop-nav {
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 72px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: var(--accent);
}

.header-btn {
  min-height: 62px;
  padding: 14px 34px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: #f7e7d0;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  white-space: nowrap;
}

.header-btn:hover {
  background: rgba(211, 154, 73, 0.08);
  color: #ffffff;
}

.burger {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}

.burger span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: rgba(7, 7, 7, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 0 24px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
}

.mobile-nav li+li {
  margin-top: 14px;
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.mobile-btn {
  width: 100%;
  margin-top: 10px;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #050505;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.86) 35%, rgba(0, 0, 0, 0.70) 58%, rgba(0, 0, 0, 0.35) 100%),
    rgba(0, 0, 0, 0.20);
}

.hero-left-light,
.hero-right-light {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: blur(70px);
}

.hero-left-light {
  width: 180px;
  height: 280px;
  left: -20px;
  bottom: 20px;
  background: rgba(211, 154, 73, 0.45);
}

.hero-right-light {
  width: 240px;
  height: 340px;
  right: -40px;
  top: 60px;
  background: rgba(211, 154, 73, 0.35);
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 740px;
  padding-top: 60px;
}

.hero-title {
  font-size: 68px;
  line-height: 1.06;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
}

.hero-title .accent {
  color: #e2bb78;
}

.hero-text {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 18px;
}

.hero-text-last {
  margin-bottom: 0;
}

.consult-card {
  margin-left: auto;
  max-width: 570px;
  padding: 34px 36px 28px;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background: rgba(8, 8, 8, 0.34);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(211, 154, 73, 0.08) inset;
}

.consult-title {
  max-width: 460px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
}

.custom-input {
  height: 64px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: transparent;
  box-shadow: none !important;
  color: #ffffff;
  font-size: 18px;
  padding: 16px 24px;
}

.custom-input::placeholder {
  color: var(--text-placeholder);
}

.custom-input:focus {
  background: transparent;
  color: #ffffff;
  border-color: #d9a55b;
}

.phone-wrap {
  position: relative;
}

.phone-wrap .phone-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-wrap .phone-icon img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.phone-input {
  padding-left: 58px;
}

.consult-btn {
  width: 100%;
  min-height: 82px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #f7e1bb;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.consult-btn:hover {
  background: rgba(211, 154, 73, 0.12);
  color: #fff0d8;
}

.policy-text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.policy-text a {
  text-decoration: underline;
}

.scroll-down {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px auto 0;
  background: rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.scroll-down:hover {
  transform: translateY(3px);
  background: rgba(211, 154, 73, 0.08);
}

.scroll-down img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}


@media (max-width: 1399.98px) {
  .hero-title {
    font-size: 60px;
  }

  .nav-list {
    gap: 46px;
  }
}

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-text {
    font-size: 17px;
  }

  .consult-title {
    font-size: 22px;
  }

  .consult-btn {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {

  .desktop-nav,
  .header-inner>.header-btn {
    display: none !important;
  }

  .burger {
    display: inline-flex;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 44px;
    margin-bottom: 22px;
  }

  .hero-text {
    font-size: 16px;
  }

  .consult-card {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .logo-text {
    font-size: 17px;
  }

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

  .hero-section {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.14;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .consult-card {
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .consult-title {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .custom-input {
    height: 56px;
    font-size: 16px;
    padding: 14px 20px;
  }

  .phone-input {
    padding-left: 54px;
  }

  .consult-btn {
    min-height: 68px;
    font-size: 18px;
    padding: 14px 18px;
  }

  .policy-text {
    font-size: 13px;
  }

  .scroll-down {
    width: 60px;
    height: 60px;
    margin-top: 32px;
  }

  .scroll-down img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 575.98px) {
 

  .header-inner {
    gap: 14px;
  }

  .hero-title {
    font-size: 30px;
  }
}


.why-us-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.why-us-bg-left,
.why-us-bg-right {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.why-us-bg-left {
  width: 220px;
  height: 220px;
  left: -40px;
  top: 0;
  background: rgba(211, 154, 73, 0.18);
}

.why-us-bg-right {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: 20px;
  background: rgba(211, 154, 73, 0.2);
}

.why-us-section .container {
  position: relative;
  z-index: 2;
}

.why-us-head {
  margin-bottom: 72px;
}

.why-us-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.why-us-title span {
  color: #e2bb78;
}

.why-card {
  min-height: 360px;
  height: 100%;
  padding: 38px 34px 34px;
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  background: rgba(6, 6, 6, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-card-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.why-card-icon img {
  width: 100%;
  height: 100%;
}

.why-card-title {
  max-width: 340px;
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

.why-card-title-link {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  text-decoration-color: #1ea7ff;
}

.why-card-text {
  max-width: 350px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1399.98px) {
  .why-us-title {
    font-size: 62px;
  }
}

@media (max-width: 1199.98px) {
  .why-us-section {
    padding: 90px 0 100px;
  }

  .why-us-title {
    font-size: 54px;
  }

  .why-card {
    min-height: 340px;
    padding: 34px 26px 30px;
  }

  .why-card-title {
    font-size: 22px;
  }

  .why-card-text {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .why-us-head {
    margin-bottom: 52px;
  }

  .why-us-title {
    font-size: 44px;
  }

  .why-card {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .why-us-section {
    padding: 70px 0 80px;
  }

  .why-us-head {
    margin-bottom: 36px;
  }

  .why-us-title {
    font-size: 32px;
    line-height: 1.18;
  }

  .why-card {
    min-height: auto;
    border-radius: 24px;
    padding: 26px 18px 24px;
  }

  .why-card-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
  }

  .why-card-icon img {
    width: 44px;
    height: 44px;
  }

  .why-card-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .why-card-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .why-us-title {
    font-size: 28px;
  }

  .why-card-title {
    font-size: 20px;
  }

  .why-card-text {
    font-size: 15px;
  }
}


.work-steps-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.work-steps-light {
  position: absolute;
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}

.work-steps-light-left {
  width: 220px;
  height: 320px;
  left: -60px;
  bottom: 80px;
  background: rgba(211, 154, 73, 0.28);
}

.work-steps-light-right {
  width: 260px;
  height: 320px;
  right: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.2);
}

.work-steps-section .container {
  position: relative;
  z-index: 2;
}

.work-steps-head {
  max-width: 900px;
  margin: 0 auto 64px;
}

.work-steps-title {
  margin: 0 0 10px;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.work-steps-line {
  width: 350px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg,
      rgba(211, 154, 73, 0.2),
      #d39a49,
      rgba(211, 154, 73, 0.2));
}

.work-steps-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 78px 1fr 78px 1fr;
  grid-template-areas:
    "card1 arrow1 card2 arrow2 card3"
    ". . . . ."
    "card4 card4 arrow3 card5 card5";
  align-items: center;
  row-gap: 54px;
  column-gap: 18px;
  max-width: 1380px;
  margin: 0 auto 72px;
}

.step-item-1 {
  grid-area: card1;
}

.step-item-2 {
  grid-area: card2;
}

.step-item-3 {
  grid-area: card3;
}

.step-item-4 {
  grid-area: card4;
}

.step-item-5 {
  grid-area: card5;
}

.step-arrow-1 {
  grid-area: arrow1;
}

.step-arrow-2 {
  grid-area: arrow2;
}

.step-arrow-3 {
  grid-area: arrow3;
}

.step-item-4,
.step-item-5 {
  display: flex;
  align-items: center;
}

.step-item-4 {
  justify-content: flex-end;
  padding-right: 0;
  margin-right: -70px;
}

.step-item-5 {
  justify-content: flex-start;
  padding-left: 0;
  margin-left: -70px;
}

.step-card {
  position: relative;
  min-height: 300px;
  padding: 120px 30px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, #d89b62 0%, #b9804a 100%);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.step-item-4 .step-card,
.step-item-5 .step-card {
  width: 100%;
  max-width: 430px;
  min-height: 285px;
}

.step-image {
  position: absolute;
  left: 50%;
  top: -62px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-image img {
  max-width: 210px;
  max-height: 170px;
  object-fit: contain;
}

.step-card-title {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff3e0;
}

.step-card-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255, 244, 230, 0.92);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.step-arrow-3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-steps-bottom {
  max-width: 860px;
  margin: 0 auto;
}

.work-steps-line-bottom {
  margin-bottom: 22px;
}

.work-steps-bottom-text {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.work-steps-btn {
  min-width: 520px;
  min-height: 86px;
  padding: 18px 34px;
  border: 1px solid rgba(211, 154, 73, 0.55);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #f4c97f;
  font-size: 28px;
  font-weight: 800;
  transition: 0.3s ease;
}

.work-steps-btn:hover {
  background: rgba(211, 154, 73, 0.08);
  color: #fff0d8;
}

@media (max-width: 1399.98px) {
  .work-steps-title {
    font-size: 62px;
  }

  .step-card {
    min-height: 290px;
    padding: 112px 24px 24px;
  }

  .step-item-4 .step-card,
  .step-item-5 .step-card {
    max-width: 400px;
    min-height: 275px;
  }

  .step-card-title {
    font-size: 21px;
  }

  .step-card-text {
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {
  .work-steps-section {
    padding: 90px 0 100px;
  }

  .work-steps-title {
    font-size: 54px;
  }

  .work-steps-subtitle {
    font-size: 19px;
  }

  .steps-layout {
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    row-gap: 38px;
    column-gap: 14px;
    margin-bottom: 60px;
  }

  .step-card {
    min-height: 280px;
    border-radius: 28px;
    padding: 108px 20px 22px;
  }

  .step-item-4 .step-card,
  .step-item-5 .step-card {
    max-width: 360px;
    min-height: 260px;
  }

  .step-image img {
    max-width: 180px;
    max-height: 145px;
  }

  .step-card-title {
    font-size: 20px;
  }

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

  .work-steps-btn {
    min-width: 420px;
    min-height: 78px;
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .work-steps-title {
    font-size: 44px;
  }

  .work-steps-subtitle {
    font-size: 17px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card1"
      "arrow1"
      "card2"
      "arrow2"
      "card3"
      "card5"
      "arrow3"
      "card4";
    gap: 24px;
    max-width: 520px;
  }

  .step-item-4,
  .step-item-5 {
    padding: 0;
    justify-content: stretch;
  }

  .step-item-4 .step-card,
  .step-item-5 .step-card {
    max-width: 100%;
    min-height: auto;
  }

  .step-card {
    min-height: auto;
    padding: 108px 22px 24px;
  }

  .step-arrow img {
    width: 50px;
    height: 50px;
  }

  .step-arrow-right img {
    transform: rotate(90deg);
  }

  .step-arrow-left img {
    transform: rotate(-90deg);
  }

  .work-steps-btn {
    min-width: 100%;
    width: 100%;
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .work-steps-section {
    padding: 70px 0 80px;
  }

  .work-steps-head {
    margin-bottom: 40px;
  }

  .work-steps-title {
    font-size: 34px;
  }

  .work-steps-line {
    width: 220px;
    margin-bottom: 16px;
  }

  .work-steps-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .step-card {
    border-radius: 24px;
    padding: 92px 18px 20px;
  }

  .step-image {
    top: -44px;
  }

  .step-image img {
    max-width: 145px;
    max-height: 110px;
  }

  .step-card-title {
    font-size: 20px;
  }

  .step-card-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .work-steps-bottom-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .work-steps-btn {
    min-height: 64px;
    font-size: 18px;
    padding: 14px 20px;
  }
}

@media (max-width: 575.98px) {
  .work-steps-title {
    font-size: 30px;
  }

  .step-card-title {
    font-size: 18px;
  }

  .step-card-text {
    font-size: 14px;
  }
}

.faq-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.faq-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.faq-light-left {
  width: 220px;
  height: 320px;
  left: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.18);
}

.faq-light-right {
  width: 260px;
  height: 340px;
  right: -70px;
  bottom: 0;
  background: rgba(211, 154, 73, 0.18);
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-head {
  margin-bottom: 52px;
}

.faq-title {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.faq-line {
  width: 420px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg,
      rgba(211, 154, 73, 0.15),
      #d39a49,
      rgba(211, 154, 73, 0.15));
}

.faq-list {
  max-width: 1420px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-question {
  width: 100%;
  min-height: 82px;
  padding: 20px 34px;
  border-radius: 28px;
  border: 1px solid rgba(211, 154, 73, 0.7);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  transition: 0.3s ease;
}

.faq-question:hover {
  border-color: rgba(211, 154, 73, 0.95);
}

.faq-item-accent .faq-question {
  border-color: #11a3ff;
  box-shadow: 0 0 0 1px rgba(17, 163, 255, 0.2);
}

.faq-answer {
  display: none;
}

.faq-answer-inner {
  margin-top: 12px;
  padding: 34px 34px 32px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(34, 34, 36, 0.96), rgba(42, 42, 44, 0.96));
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.35;
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ffffff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 3px;
}

.faq-icon::after {
  width: 3px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

@media (max-width: 1399.98px) {
  .faq-title {
    font-size: 62px;
  }
}

@media (max-width: 1199.98px) {
  .faq-section {
    padding: 90px 0 100px;
  }

  .faq-title {
    font-size: 54px;
  }

  .faq-question {
    min-height: 76px;
    font-size: 19px;
    padding: 18px 28px;
  }

  .faq-answer-inner {
    font-size: 17px;
    padding: 28px 28px 26px;
  }
}

@media (max-width: 991.98px) {
  .faq-title {
    font-size: 44px;
  }

  .faq-head {
    margin-bottom: 40px;
  }

  .faq-question {
    min-height: 70px;
    font-size: 18px;
  }

  .faq-answer-inner {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 70px 0 80px;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-line {
    width: 240px;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-question {
    min-height: 64px;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 16px;
    gap: 16px;
  }

  .faq-answer-inner {
    margin-top: 10px;
    padding: 20px 18px;
    border-radius: 20px;
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer-inner {
    font-size: 14px;
  }
}


.reviews-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.reviews-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.reviews-light-left {
  width: 220px;
  height: 340px;
  left: -70px;
  bottom: 30px;
  background: rgba(211, 154, 73, 0.22);
}

.reviews-light-right {
  width: 260px;
  height: 340px;
  right: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.2);
}

.reviews-section .container {
  position: relative;
  z-index: 2;
}

.reviews-head {
  margin-bottom: 48px;
}

.reviews-title {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.reviews-line {
  width: 420px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg,
      rgba(211, 154, 73, 0.15),
      #d39a49,
      rgba(211, 154, 73, 0.15));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 26px;
  margin-bottom: 56px;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  background: #000000;
  overflow: hidden;
}

.review-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #ece9df;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.review-play img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-left: 4px;
}

.review-video:hover .review-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #ffffff;
}

.review-content {
  padding-top: 10px;
}

.review-accent-line {
  width: 82px;
  height: 3px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #f0c37b 0%, #d39a49 100%);
}

.review-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.92);
}

.reviews-bottom {
  max-width: 820px;
  margin: 0 auto;
}

.reviews-bottom-text {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.reviews-btn {
  min-width: 520px;
  min-height: 86px;
  padding: 18px 34px;
  border: 1px solid rgba(211, 154, 73, 0.55);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #f4c97f;
  font-size: 28px;
  font-weight: 800;
  transition: 0.3s ease;
}

.reviews-btn:hover {
  background: rgba(211, 154, 73, 0.08);
  color: #fff0d8;
}

@media (max-width: 1399.98px) {
  .reviews-title {
    font-size: 62px;
  }

  .review-text {
    font-size: 17px;
  }
}

@media (max-width: 1199.98px) {
  .reviews-section {
    padding: 90px 0 100px;
  }

  .reviews-title {
    font-size: 54px;
  }

  .reviews-grid {
    gap: 24px 20px;
  }

  .review-play {
    width: 70px;
    height: 70px;
  }

  .review-play img {
    width: 24px;
    height: 24px;
  }

  .review-text {
    font-size: 16px;
  }

  .reviews-btn {
    min-width: 420px;
    min-height: 78px;
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .reviews-title {
    font-size: 44px;
  }

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

  .reviews-bottom-text {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .reviews-section {
    padding: 70px 0 80px;
  }

  .reviews-head {
    margin-bottom: 36px;
  }

  .reviews-title {
    font-size: 34px;
  }

  .reviews-line {
    width: 240px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .review-play {
    width: 64px;
    height: 64px;
  }

  .review-play img {
    width: 22px;
    height: 22px;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .reviews-bottom-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .reviews-btn {
    width: 100%;
    min-width: 100%;
    min-height: 64px;
    font-size: 18px;
    padding: 14px 20px;
  }
}

@media (max-width: 575.98px) {
  .reviews-title {
    font-size: 30px;
  }

  .review-text {
    font-size: 14px;
  }
}

.services-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.services-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.services-light-left {
  width: 220px;
  height: 340px;
  left: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.2);
}

.services-light-right {
  width: 260px;
  height: 340px;
  right: -70px;
  bottom: 0;
  background: rgba(211, 154, 73, 0.2);
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-head {
  max-width: 980px;
  margin: 0 auto 56px;
}

.services-title {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.services-line {
  width: 420px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg,
      rgba(211, 154, 73, 0.15),
      #d39a49,
      rgba(211, 154, 73, 0.15));
}

.services-subtitle {
  max-width: 980px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.services-subtitle-link {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  text-decoration-color: #1ea7ff;
}

.services-grid {
  display: grid;
  gap: 28px;
}

.services-grid-top {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
}

.services-grid-bottom {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  min-height: 390px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(211, 154, 73, 0.72);
  border-radius: 34px;
  background: rgba(5, 5, 5, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.service-card-title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  color: #ffffff;
  max-width: 260px;
}

.service-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  max-width: 270px;
}

@media (max-width: 1399.98px) {
  .services-title {
    font-size: 62px;
  }

  .service-card {
    min-height: 375px;
    padding: 30px 22px 24px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card-text {
    font-size: 15px;
  }
}

@media (max-width: 1199.98px) {
  .services-section {
    padding: 90px 0 100px;
  }

  .services-title {
    font-size: 54px;
  }

  .services-subtitle {
    font-size: 18px;
  }

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

  .services-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .service-card {
    min-height: 340px;
    border-radius: 28px;
  }
}

@media (max-width: 991.98px) {
  .services-title {
    font-size: 44px;
  }

  .services-head {
    margin-bottom: 42px;
  }

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

  .services-grid-bottom {
    max-width: 100%;
  }

  .service-card {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 70px 0 80px;
  }

  .services-title {
    font-size: 34px;
  }

  .services-line {
    width: 240px;
  }

  .services-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .services-grid-top,
  .services-grid-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-grid-top {
    margin-bottom: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .service-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
  }

  .service-card-icon img {
    max-width: 58px;
    max-height: 58px;
  }

  .service-card-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .service-card-text {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .services-title {
    font-size: 30px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .service-card-text {
    font-size: 14px;
  }
}

.why-company-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.why-company-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.why-company-light-left {
  width: 220px;
  height: 340px;
  left: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.2);
}

.why-company-light-right {
  width: 260px;
  height: 340px;
  right: -70px;
  top: 0;
  background: rgba(211, 154, 73, 0.2);
}

.why-company-section .container {
  position: relative;
  z-index: 2;
}

.why-company-head {
  margin-bottom: 54px;
}

.why-company-title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.why-company-title span {
  color: #e2bb78;
}

.why-company-line {
  width: 520px;
  max-width: 100%;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg,
      rgba(211, 154, 73, 0.15),
      #d39a49,
      rgba(211, 154, 73, 0.15));
}

.why-company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.why-company-image-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.why-company-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.why-company-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-company-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-company-dot {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  margin-top: 10px;
  background: linear-gradient(180deg, #f5cf8f 0%, #d39a49 100%);
}

.why-company-texts {
  flex: 1;
}

.why-company-item-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.why-company-item-title-accent {
  color: #f0c37b;
}

.why-company-item-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1399.98px) {
  .why-company-title {
    font-size: 62px;
  }

  .why-company-item-title {
    font-size: 24px;
  }

  .why-company-item-text {
    font-size: 17px;
  }
}

@media (max-width: 1199.98px) {
  .why-company-section {
    padding: 90px 0 100px;
  }

  .why-company-title {
    font-size: 54px;
  }

  .why-company-layout {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .why-company-content {
    gap: 24px;
  }

  .why-company-item-title {
    font-size: 22px;
  }

  .why-company-item-text {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .why-company-title {
    font-size: 44px;
  }

  .why-company-head {
    margin-bottom: 40px;
  }

  .why-company-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-company-image-wrap {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .why-company-section {
    padding: 70px 0 80px;
  }

  .why-company-title {
    font-size: 34px;
  }

  .why-company-line {
    width: 240px;
  }

  .why-company-content {
    gap: 22px;
  }

  .why-company-item {
    gap: 14px;
  }

  .why-company-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 7px;
  }

  .why-company-item-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .why-company-item-text {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .why-company-title {
    font-size: 30px;
  }

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

  .why-company-item-text {
    font-size: 14px;
  }
}

.contact-form-section {
  position: relative;
  padding: 110px 0 120px;
  background: #050505;
  overflow: hidden;
}

.contact-form-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.contact-form-light-left {
  width: 220px;
  height: 340px;
  left: -70px;
  top: 40px;
  background: rgba(211, 154, 73, 0.18);
}

.contact-form-light-right {
  width: 260px;
  height: 340px;
  right: -70px;
  bottom: 0;
  background: rgba(211, 154, 73, 0.16);
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.contact-form-card {
  padding: 44px 50px 34px;
  border: 1px solid rgba(211, 154, 73, 0.55);
  border-radius: 38px;
  background: rgba(5, 5, 5, 0.72);
}

.contact-form-title {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.contact-form-box {
  max-width: 100%;
}

.contact-input {
  height: 76px;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid rgba(211, 154, 73, 0.75);
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  box-shadow: none !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-input:focus {
  background: transparent;
  color: #ffffff;
  border-color: #e0ab5d;
}

.contact-phone-wrap {
  position: relative;
}

.contact-phone-flag {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-phone-flag img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}

.contact-phone-input {
  padding-left: 72px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 96px;
  padding: 20px 28px;
  border-radius: 999px;
  border: 1px solid rgba(211, 154, 73, 0.75);
  background: transparent;
  color: #f3c87f;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  background: rgba(211, 154, 73, 0.08);
  color: #fff0d8;
}

.contact-policy-text {
  margin: 18px 0 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.contact-policy-text a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-form-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1399.98px) {
  .contact-form-layout {
    grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
    gap: 50px;
  }

  .contact-form-title {
    font-size: 25px;
  }

  .contact-submit-btn {
    font-size: 26px;
    min-height: 88px;
  }
}

@media (max-width: 1199.98px) {
  .contact-form-section {
    padding: 90px 0 100px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-form-card {
    padding: 36px 28px 28px;
    border-radius: 30px;
  }

  .contact-form-title {
    font-size: 23px;
    margin-bottom: 24px;
  }

  .contact-input {
    height: 68px;
    font-size: 17px;
  }

  .contact-submit-btn {
    min-height: 80px;
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .contact-form-image-wrap {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .contact-form-section {
    padding: 70px 0 80px;
  }

  .contact-form-card {
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .contact-form-title {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .contact-input {
    height: 58px;
    padding: 14px 20px;
    font-size: 16px;
  }

  .contact-phone-flag {
    left: 18px;
  }

  .contact-phone-flag img {
    width: 24px;
    height: 16px;
  }

  .contact-phone-input {
    padding-left: 58px;
  }

  .contact-submit-btn {
    min-height: 68px;
    font-size: 18px;
    padding: 14px 18px;
  }

  .contact-policy-text {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .contact-form-title {
    font-size: 18px;
  }

  .contact-input {
    font-size: 15px;
  }

  .contact-submit-btn {
    font-size: 17px;
  }
}

.site-footer {
  position: relative;
  padding: 56px 0 26px;
  background: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.site-footer-light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
}

.site-footer-light-left {
  width: 220px;
  height: 220px;
  left: -70px;
  top: -20px;
  background: rgba(211, 154, 73, 0.18);
}

.site-footer-light-right {
  width: 240px;
  height: 220px;
  right: -70px;
  bottom: -40px;
  background: rgba(211, 154, 73, 0.16);
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  margin-bottom: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-icon {
  width: 62px;
  height: 62px;
  background: #4b4d67;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-logo-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.footer-logo-text-white {
  color: #ffffff;
}

.footer-logo-text-accent {
  color: #e2bb78;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.footer-left {
  max-width: 520px;
}

.footer-address {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.footer-right {
  text-align: right;
}

.footer-policy-link {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1199.98px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-logo-text {
    font-size: 24px;
  }



  .footer-copy {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 38px 0 22px;
  }

  .footer-top {
    margin-bottom: 16px;
  }

  .footer-logo {
    gap: 12px;
  }

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

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

  .footer-logo-text {
    font-size: 22px;
  }

  .footer-address {
    font-size: 16px;
  }



  .footer-copy {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .footer-logo-text {
    font-size: 18px;
    white-space: normal;
  }

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

  .footer-copy {
    font-size: 13px;
  }
}

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

.custom-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.custom-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.custom-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 2;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}

.custom-modal.active .custom-modal-dialog {
  transform: translateY(0) scale(1);
}

.custom-modal-content {
  position: relative;
  padding: 54px 44px 30px;
  border: 1px solid rgba(211, 154, 73, 0.6);
  border-radius: 34px;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.custom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.custom-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  transform-origin: center;
}

.custom-modal-close span:first-child {
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.custom-modal-close span:last-child {
  background: #d39a49;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.custom-modal-title {
  max-width: 700px;
  margin: 0 auto 26px;
  text-align: center;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 500;
  color: #ffffff;
}

.custom-modal-form {
  max-width: 720px;
  margin: 0 auto;
}

.custom-modal-input {
  height: 64px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(211, 154, 73, 0.75);
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  box-shadow: none !important;
}

.custom-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.custom-modal-input:focus {
  background: transparent;
  color: #ffffff;
  border-color: #e0ab5d;
}

.custom-modal-phone-wrap {
  position: relative;
}

.custom-modal-phone-flag {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.custom-modal-phone-flag img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.custom-modal-phone-input {
  padding-left: 56px;
}

.custom-modal-submit {
  width: 100%;
  min-height: 84px;
  padding: 18px 24px;
  border-radius: 999px;
  border: 1px solid rgba(211, 154, 73, 0.75);
  background: transparent;
  color: #f3c87f;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  transition: 0.3s ease;
}

.custom-modal-submit:hover {
  background: rgba(211, 154, 73, 0.08);
  color: #fff0d8;
}

.custom-modal-policy {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.custom-modal-policy a {
  color: #ffffff;
  text-decoration: underline;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .custom-modal {
    padding: 16px;
  }

  .custom-modal-content {
    padding: 48px 18px 22px;
    border-radius: 24px;
  }

  .custom-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .custom-modal-close span {
    width: 28px;
    height: 2px;
  }

  .custom-modal-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 18px;
  }

  .custom-modal-input {
    height: 56px;
    font-size: 16px;
    padding: 14px 18px;
  }

  .custom-modal-phone-input {
    padding-left: 52px;
  }

  .custom-modal-submit {
    min-height: 68px;
    font-size: 18px;
    padding: 14px 16px;
  }

  .custom-modal-policy {
    font-size: 12px;
  }
}

.privacy {
  background: #0b0b0c;
  color: #d6d6d6;
  padding: 120px 20px;
  font-family: 'Inter', sans-serif;
}

.privacy .container {
  max-width: 1100px;
  margin: 0 auto;
}


.privacy h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 1px;
  position: relative;
}

.privacy h1::after {
  content: "";
  display: block;
  width: 180px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, #e0b36a, transparent);
}


.privacy h2 {
  font-size: 40px;
  color: #ffffff;
  margin-top: 70px;
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy h3 {
  font-size: 20px;
  color: #e0b36a;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}


.privacy p {
  font-size: 24px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #bfbfbf;
}


.privacy p strong {
  color: #ffffff;
  font-weight: 600;
}


.privacy p::marker {
  color: #e0b36a;
}


.privacy h2:not(:first-of-type) {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}


.privacy p:hover {
  color: #ffffff;
  transition: 0.2s;
}


@media (max-width: 768px) {
  .privacy {
    padding: 80px 16px;
  }

  .privacy h1 {
    font-size: 36px;
  }

  .privacy h2 {
    font-size: 24px;
  }

  .privacy p {
    font-size: 14px;
  }
}

.site-header .logo img,
.footer-logo img {
  display: block;
  height: auto;
}

.custom-input,
.contact-input,
.custom-modal-input {
  -webkit-appearance: none;
  appearance: none;
}

.consult-btn,
.contact-submit-btn,
.custom-modal-submit,
.work-steps-btn,
.reviews-btn,
.header-btn {
  cursor: pointer;
}

.custom-modal-dialog {
  max-width: 640px;
}

.custom-modal-content {
  padding: 44px 34px 20px;
  border-radius: 30px;
}

.custom-modal-close {
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-close img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.custom-modal-title {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.28;
}

.custom-modal-form {
  max-width: 540px;
}

.custom-modal-input {
  height: 56px;
  padding: 14px 20px;
  font-size: 16px;
}

.custom-modal-phone-input {
  padding-left: 54px;
}

.custom-modal-phone-flag {
  left: 16px;
}

.custom-modal-submit {
  min-height: 72px;
  font-size: 22px;
}

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

.privacy {
  background: #0b0b0c;
  color: rgba(255, 255, 255, 0.9);
  padding: 140px 24px 120px;
  font-family: "Montserrat", sans-serif;
}

.privacy .container {
  max-width: 1392px;
  margin: 0 auto;
}

.privacy h1 {
  margin: 0 0 64px;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
}

.privacy h1::after {
  display: none;
}

.privacy h2 {
  margin: 60px 0 24px;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 800;
  color: #ffffff;
}

.privacy h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}

.privacy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.92);
}

.privacy p strong {
  color: #ffffff;
  font-weight: 700;
}

.privacy h2:not(:first-of-type) {
  border-top: 0;
  padding-top: 0;
}

.privacy p:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991.98px) {
  .privacy {
    padding: 120px 20px 90px;
  }

  .privacy h1 {
    margin-bottom: 44px;
    font-size: 40px;
  }

  .privacy h2 {
    margin-top: 44px;
    margin-bottom: 18px;
    font-size: 30px;
  }

  .privacy h3 {
    font-size: 19px;
  }

  .privacy p {
    margin-bottom: 14px;
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .custom-modal-content {
    padding: 44px 18px 18px;
    border-radius: 24px;
  }

  .custom-modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .custom-modal-close img {
    width: 24px;
    height: 24px;
  }

  .custom-modal-title {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.35;
  }

  .custom-modal-input {
    height: 52px;
    font-size: 15px;
  }

  .custom-modal-submit {
    min-height: 64px;
    font-size: 18px;
  }

  .privacy {
    padding: 104px 16px 72px;
  }

  .privacy h1 {
    font-size: 18px;
    line-height: 1.1;
  }

  .privacy h2 {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.2;
  }

  .privacy h3 {
    font-size: 17px;
  }

  .privacy p {
    font-size: 14px;
    line-height: 1.42;
  }
}

 
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-42px, 42px, 0);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(42px, 42px, 0);
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal-on-scroll,
  .reveal-on-scroll.reveal-left,
  .reveal-on-scroll.reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile fix for work-steps-section */
@media (max-width: 991.98px) {
  .work-steps-section {
    overflow: hidden;
  }

  .work-steps-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card1"
      "card2"
      "card3"
      "card5"
      "card4";
    gap: 34px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 44px;
  }

  .step-arrow,
  .step-arrow-1,
  .step-arrow-2,
  .step-arrow-3 {
    display: none !important;
  }

  .step-item,
  .step-item-1,
  .step-item-2,
  .step-item-3,
  .step-item-4,
  .step-item-5 {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: stretch;
  }

  .step-card,
  .step-item-4 .step-card,
  .step-item-5 .step-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 767.98px) {
  .work-steps-head {
    margin-bottom: 28px;
  }

  .steps-layout {
    gap: 60px;
    margin-bottom: 36px;
  }

  .step-card {
    border-radius: 22px;
    padding: 84px 16px 22px;
  }

  .step-image {
    top: -40px;
  }

  .step-image img {
    max-width: 132px;
    max-height: 102px;
  }

  .step-card-title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.25;
  }

  .step-card-text {
    font-size: 14px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 575.98px) {
  .work-steps-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .steps-layout {
    gap: 60px;
  }

  .step-card {
    padding: 80px 14px 20px;
  }

  .step-image img {
    max-width: 124px;
    max-height: 96px;
  }

  .step-card-title {
    font-size: 17px;
  }

  .step-card-text {
    font-size: 13px;
    line-height: 1.42;
  }
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.video-modal-wrap {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 900px;
}
.video-modal-player {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}
