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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: #006f54;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px 58px 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 70px;
  display: block;
  object-fit: contain;

}

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

.callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: #00674C;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.callback-btn:hover {
  background: #005f46;
}


.header-bottom {
  margin-top: 34px;
  border-top: 2px solid #dcdcdc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
  gap: 20px;
}

.nav a {
  color: #00674C;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: 0.2s ease;
}

.nav a:hover {
  opacity: 0.75;
}


.burger {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.burger span {
  display: block;
  width: 34px;
  height: 4px;
  background: #00674C;
  border-radius: 4px;
  margin: 6px auto;
  transition: 0.25s ease;
}

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

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

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


.page-content {
  padding-top: 180px;
}

.hero {
  height: 1400px;
}


@media (max-width: 1200px) {
  .site-header {
    padding: 20px 24px 0;
  }

  .logo img {
    width: 150px;
  }

  .callback-btn {
    min-height: 60px;
    font-size: 18px;
    padding: 16px 24px;
  }

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

@media (max-width: 992px) {
  .callback-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .header-bottom {
    margin-top: 20px;
    border-top: 1px solid #dcdcdc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header-bottom.active {
    max-height: 400px;
  }

  .nav {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

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

  .page-content {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 20px 16px 0;
  }

  .logo img {
    width: 120px;
  }

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

  .page-content {
    padding-top: 105px;
  }
}


.hero-section {
  background: url('../img/hero.png') center center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

.hero-container {
  padding: 0 58px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 55px;
  line-height: 0.98;
  font-weight: 700;
  color: #00674C;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
  color: #6EC72D;
  text-transform: uppercase;
  max-width: 780px;
  margin-bottom: 34px;
}

.hero-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input {
  width: 100%;
  border: 2px solid #7bcc3a;
  border-radius: 999px;
  background: #f8f8f8;

  padding: 9px 20px;
  font-size: 18px;
  color: #808080;
  outline: none;
}

.hero-form input::placeholder {
  color: #8a8a8a;
}


.phone-field {
  position: relative;
  width: 100%;
}

.phone-field input {
  padding-left: 130px;
}

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

.phone-prefix img {
  width: auto;
  height: 14px;
  object-fit: cover;
  display: block;
}

.phone-prefix span {
  font-size: 18px;
  color: #8a8a8a;
  line-height: 1;
}


.hero-submit {
  width: 100%;
  border: none;
  border-radius: 36px;
  background: #00674C;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: 2px;
  padding: 12px 0;
}

.hero-submit:hover {
  background: #005f46;
}


.hero-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 760px;
}

.hero-statue {
  max-height: 980px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;

}


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

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-statue {
    max-height: 820px;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
  }

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

  .hero-subtitle {
    font-size: 24px;
    max-width: 780px;
  }

  .hero-form {
    max-width: 520px;
  }

  .hero-right {
    width: 100%;
    min-height: auto;
    justify-content: center;
  }

  .hero-statue {
    max-height: 700px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .hero-form {
    max-width: 100%;
  }

  .hero-form input {
    font-size: 18px;
    padding: 9px 20px;
  }

  .phone-field input {
    padding-left: 110px;
  }

  .phone-prefix {
    left: 18px;
  }

  .phone-prefix img {
    width: auto;
    height: 14px;
  }

  .phone-prefix span {
    font-size: 18px;
  }

  .hero-submit {
    min-height: 90px;
    font-size: 22px;
    border-radius: 28px;
  }

  .hero-statue {
    max-height: 520px;
  }
}

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

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

  .hero-form input {
    padding: 9px 20px;
    font-size: 18px;
  }

  .hero-submit {
    font-size: 19px;
    min-height: 82px;
  }
}


.about-section {
  background: #ffffff;
  padding: 120px 0px;
}

.about-wrapper {
  max-width: 1720px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  color: #00674C;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 72px;
}

.about-content {
  display: grid;
  grid-template-columns: 0.97fr 1fr;
  align-items: center;
  gap: 28px;
}

.about-image img {
  width: 100%;
  display: block;
  object-fit: cover;

}

.about-text {
  max-width: 870px;
}

.about-text p {
  font-size: 20px;
  line-height: 1.32;
  color: #5e5e5e;
  font-weight: 400;
  margin-bottom: 28px;
}

.about-text-main {
  font-size: 26px;
  line-height: 1.34;
  color: #00674C !important;
  font-weight: 500;
}

.text-accent {
  color: #6EC72D;
}


@media (max-width: 1600px) {
  .about-title {
    font-size: 40px;
    margin-bottom: 56px;
  }

  .about-text p,
  .about-text-main {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .about-section {
    padding: 70px 24px 90px;
  }

  .about-title {
    font-size: 40px;
    margin-bottom: 42px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 56px 16px 72px;
  }

  .about-title {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .about-text p,
  .about-text-main {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .about-text p,
  .about-text-main {
    font-size: 18px;
  }
}


.stats-section {
  background: #00674C;
  padding: 110px 40px 120px;
}

.stats-container {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  align-items: start;
}

.stat-card {
  text-align: center;
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 24px;
}

.stat-currency,
.stat-suffix {
  display: inline-block;
}

.stat-line {
  width: 100%;
  height: 2px;
  background: #6EC72D;
  margin-bottom: 22px;
}

.stat-label {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}


@media (max-width: 1600px) {
  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .stats-section {
    padding: 90px 24px 100px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stat-number {
    font-size: 40px;
    margin-bottom: 18px;
  }

  .stat-label {
    font-size: 20px;
  }
}

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

  .stat-number {
    font-size: 40px;
    gap: 6px;
  }

  .stat-line {
    margin-bottom: 14px;
  }

  .stat-label {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 18px;
  }
}


.competence-section {
  background: #ffffff;
  padding: 120px 0px;
}



.competence-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 700;
  color: #00674C;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.competence-subtitle {
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #6EC72D;
  text-transform: uppercase;
  margin-bottom: 68px;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 970px;
  margin: 0 auto;
  gap: 42px 40px;
  margin-bottom: 56px;
}

.competence-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 16px;
  min-height: 215px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.competence-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  color: #00674C;
  margin-bottom: 18px;
}

.competence-card p {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: #6EC72D;
}

.competence-action {
  display: flex;
  justify-content: center;
  padding: 0px 16px;
}

.competence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 845px;
  padding: 20px 38px;
  border-radius: 34px;
  background: #00674C;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.competence-btn:hover {
  background: #005f46;
}


@media (max-width: 1600px) {
  .competence-title {
    font-size: 40px;
  }

  .competence-subtitle {
    font-size: 24px;
  }

  .competence-card h3 {
    font-size: 18px;
  }

  .competence-card p {
    font-size: 16px;
  }

  .competence-btn {
    font-size: 28px;
    min-width: 760px;
  }
}

@media (max-width: 1200px) {
  .competence-section {
    padding: 120px 0px;
  }

  .competence-title {
    font-size: 40px;
  }

  .competence-subtitle {
    font-size: 24px;
    margin-bottom: 42px;
  }

  .competence-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .competence-btn {
    min-width: auto;
    width: 100%;
    max-width: 760px;
    font-size: 24px;
    min-height: 78px;
  }
}

@media (max-width: 768px) {
  .competence-section {
    padding: 90px 0px;
  }

  .competence-title {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .competence-subtitle {
    font-size: 19px;
    margin-bottom: 28px;
  }

  .competence-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
    padding: 70px 16px 80px;
  }

  .competence-card {
    min-height: auto;
    padding: 34px 16px;
    border-radius: 14px;
  }

  .competence-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .competence-card p {
    font-size: 16px;
  }

  .competence-btn {
    font-size: 19px;
    min-height: 66px;
    border-radius: 24px;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .competence-title {
    font-size: 28px;
  }

  .competence-subtitle {
    font-size: 17px;
  }

  .competence-card h3 {
    font-size: 18px;
  }

  .competence-card p {
    font-size: 16px;
  }

  .competence-btn {
    font-size: 17px;
  }
}


.why-section {
  background: #00674C;
  padding: 96px 24px;
}

.why-wrapper,
.team-wrapper,
.message-wrapper,
.warning-wrapper,
.process-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}

.why-title,
.team-title,
.process-title {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.why-title {
  color: #ffffff;
  margin-bottom: 42px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
  gap: 28px;
}

.why-item {
  max-width: none;
}

.why-item h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}

.why-line {
  width: 100%;
  max-width: 240px;
  height: 3px;
  background: #6EC72D;
  margin-bottom: 18px;
}

.why-item p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  max-width: 100%;
}

.team-section {
  background: #ffffff;
  padding: 96px 24px;
}

.team-title {
  color: #00674C;
  margin-bottom: 18px;
}

.team-subtitle {
  max-width: 960px;
  margin: 0 auto 42px;
  text-align: center;
  color: #6EC72D;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 42px;
}

.team-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  padding: 28px 20px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  color: #00674C;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 14px;
}

.team-card p {
  color: #6EC72D;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.team-action,
.process-action {
  display: flex;
  justify-content: center;
}

.team-btn,
.process-btn,
.competence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  min-width: 0;
  min-height: 78px;
  padding: 18px 28px;
  border-radius: 32px;
  background: #00674C;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.team-btn:hover,
.process-btn:hover,
.competence-btn:hover {
  background: #005f46;
}

.message-section {
  background: #00674C;
  padding: 88px 24px;
}

.message-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.message-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.message-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.message-name {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.message-content p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 100%;
}

.contact-section {
  background: #ffffff;
  padding: 96px 24px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.contact-left {
  max-width: 620px;
}

.contact-title {
  color: #00674C;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: #6EC72D;
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.contact-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 14px;
}

.contact-form input {
  width: 100%;
  height: 56px;
  border: 2px solid #7bcc3a;
  border-radius: 999px;
  background: transparent;
  padding: 0 20px;
  font-size: 18px;
  color: #808080;
  outline: none;
}

.contact-form input::placeholder {
  color: #8a8a8a;
}

.contact-phone-field {
  position: relative;
  width: 100%;
}

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

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

.contact-phone-prefix img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  display: block;
}

.contact-phone-prefix span {
  font-size: 18px;
  color: #8a8a8a;
  line-height: 1;
}

.contact-submit {
  width: 100%;
  min-height: 84px;
  border: none;
  border-radius: 32px;
  background: #00674C;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  margin-top: 2px;
  padding: 16px 20px;
}

.contact-submit:hover {
  background: #005f46;
}

.contact-right img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.warning-section {
  background: #00674C;
  padding: 88px 24px;
}

.warning-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: center;
}

.warning-content p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 16px;
}

.warning-content p:last-child {
  margin-bottom: 0;
}

.warning-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.warning-image img {
  width: 100%;
  max-width: 270px;
  display: block;
  object-fit: contain;
}

.process-section {
  background: #ffffff;
  padding: 96px 24px;
}

.process-title {
  color: #00674C;
  margin-bottom: 18px;
}

.process-subtitle {
  text-align: center;
  color: #6EC72D;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00674C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-card h3 {
  color: #00674C;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  color: #6EC72D;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 1200px) {

  .why-section,
  .team-section,
  .message-section,
  .contact-section,
  .warning-section,
  .process-section {
    padding: 72px 24px;
  }

  .why-title,
  .team-title,
  .process-title,
  .contact-title {
    font-size: 30px;
  }

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

  .message-wrapper,
  .contact-wrapper,
  .warning-wrapper {
    grid-template-columns: 1fr;
  }

  .message-person,
  .warning-image {
    justify-self: center;
  }

  .contact-left {
    max-width: 100%;
  }

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

@media (max-width: 768px) {

  .why-section,
  .team-section,
  .message-section,
  .contact-section,
  .warning-section,
  .process-section {
    padding: 56px 16px;
  }

  .why-title,
  .team-title,
  .process-title,
  .contact-title {
    font-size: 30px;
  }

  .team-subtitle,
  .contact-subtitle,
  .process-subtitle {
    font-size: 19px;
    margin-bottom: 28px;
  }

  .why-list,
  .team-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-item h3,
  .team-card h3,
  .process-card h3 {
    font-size: 20px;
  }

  .why-item p,
  .team-card p,
  .message-content p,
  .warning-content p,
  .process-card p {
    font-size: 16px;
  }

  .message-wrapper {
    gap: 24px;
  }

  .message-photo {
    width: 120px;
    height: 120px;
  }

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

  .contact-form input {
    height: 52px;
    font-size: 16px;
  }

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

  .contact-phone-prefix {
    left: 16px;
  }

  .contact-phone-prefix img {
    width: 22px;
    height: 14px;
  }

  .contact-phone-prefix span {
    font-size: 16px;
  }

  .team-btn,
  .process-btn,
  .competence-btn,
  .contact-submit {
    min-height: 68px;
    font-size: 19px;
    border-radius: 24px;
    padding: 16px 18px;
  }
}

@media (max-width: 480px) {

  .why-title,
  .team-title,
  .process-title,
  .contact-title {
    font-size: 28px;
  }

  .team-subtitle,
  .contact-subtitle,
  .process-subtitle {
    font-size: 17px;
  }

  .why-item h3,
  .team-card h3,
  .message-name,
  .process-card h3 {
    font-size: 18px;
  }

  .why-item p,
  .team-card p,
  .message-content p,
  .warning-content p,
  .process-card p {
    font-size: 15px;
  }

  .message-photo {
    width: 104px;
    height: 104px;
  }

  .team-btn,
  .process-btn,
  .competence-btn,
  .contact-submit {
    font-size: 17px;
  }
}

.site-footer {
  background: #ffffff;
  padding: 46px 52px 34px;
  border-top: 2px solid #dddddd;
}

.footer-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  width: auto;
  height: 70px;
  display: block;
  object-fit: contain;

}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer-policy {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: underline;
  transition: 0.2s ease;
}

.footer-policy:hover {
  opacity: 0.75;
}

.footer-copy {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-align: right;
}


@media (max-width: 1200px) {
  .site-footer {
    padding: 34px 24px 28px;
  }



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

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

@media (max-width: 768px) {
  .site-footer {
    padding: 28px 16px 24px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
    gap: 10px;
  }

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

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

@media (max-width: 480px) {
  .footer-logo img {
    width: auto;
    height: 70px;
  }

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


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}


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

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 117, 86, 0.72);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #00674C;
  border-radius: 34px;
  padding: 76px 54px 34px;
  z-index: 1;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}

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

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form input {
  width: 100%;
  height: 56px;
  border: 2px solid #7bcc3a;
  border-radius: 999px;
  background: #f8f8f8;
  padding: 0 22px;
  font-size: 18px;
  color: #808080;
  outline: none;
}

.modal-form input::placeholder {
  color: #8a8a8a;
}

.modal-phone-field {
  position: relative;
  width: 100%;
}

.modal-phone-field input {
  padding-left: 110px;
}

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

.modal-phone-prefix img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  display: block;

}

.modal-phone-prefix span {
  font-size: 20px;
  color: #8a8a8a;
  line-height: 1;
}

.modal-submit {
  width: 100%;
  min-height: 88px;
  margin-top: 8px;
  border: 2px solid #ffffff;
  border-radius: 28px;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.modal-submit:hover {
  background: #ffffff;
  color: #00674C;
}

body.modal-lock {
  overflow: hidden;
}


@media (max-width: 768px) {
  .modal__dialog {
    max-width: 100%;
    padding: 72px 20px 24px;
    border-radius: 24px;
  }

  @media (max-width: 768px) {
    .modal__close {
      top: 14px;
      right: 14px;
      width: 48px;
      height: 48px;
    }

    .modal__close img {
      width: 48px;
      height: 48px;
    }
  }

  .modal-form input {
    height: 52px;
    font-size: 18px;
    padding: 0 18px;
  }

  .modal-phone-field input {
    padding-left: 98px;
  }

  .modal-phone-prefix {
    left: 16px;
  }

  .modal-phone-prefix img {
    width: 24px;
    height: 16px;
  }

  .modal-phone-prefix span {
    font-size: 18px;
  }

  .modal-submit {
    min-height: 76px;
    font-size: 20px;
    border-radius: 22px;
  }
}

.policy-page {
  background: #ffffff;
  min-height: 100vh;
  padding: 140px 24px 40px;
}

.policy-container {
  padding: 20px 58px 0px;
  margin: 0 auto;
}

.policy-container h1 {
  color: #333333;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.policy-section {
  margin-bottom: 54px;
}

.policy-section h2 {
  color: #333333;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.policy-section h3 {
  color: #333333;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin: 18px 0 12px;
}

.policy-section p {
  color: #333333;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 300;
  margin-bottom: 14px;
}

.policy-section p strong {
  font-weight: 700;
  color: #333333;
}


@media (max-width: 768px) {
  .policy-page {
    padding: 120px 16px 32px;
  }

  .policy-container {
    padding: 0;
  }

  .policy-container h1 {
    font-size: 24px;
    margin-bottom: 34px;
  }

  .policy-section {
    margin-bottom: 34px;
  }

  .policy-section h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .policy-section h3 {
    font-size: 18px;
    margin: 14px 0 10px;
  }

  .policy-section p {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
}



.thanks-page {
  min-height: 100vh;
  background-color: #ffffff;
  background-image: url("../img/hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 60px;
}

.thanks-page__content {
  width: 100%;
  max-width: 1040px;
  margin-left: 20px;
}

.thanks-page__title {
  color: #00674C;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}


@media (max-width: 1600px) {
  .thanks-page__title {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .thanks-page {
    padding: 32px 24px;
    background-position: 68% center;
  }

  .thanks-page__content {
    max-width: 820px;
    margin-left: 0;
  }

  .thanks-page__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .thanks-page {
    padding: 24px 16px;
    align-items: center;
    background-position: 72% center;
  }

  .thanks-page__title {
    font-size: 30px;
    line-height: 1.18;
  }
}

@media (max-width: 480px) {
  .thanks-page__title {
    font-size: 24px;
  }
}