@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
a {
  color: black;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.4s;
}

a:hover {
  color: #f9c74f;
}

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

body {
  font-family: "Inter", sans-serif;
  color: #3d3431;
  margin: 0;
  padding-top: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main section {
  overflow-x: hidden;
}

.header {
  padding: 1rem 2rem;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f3eed9;
  position: fixed;
  width: 100vw;
  left: 0;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid transparent;
}
@media (max-width: 1023px) {
  .header {
    padding: 0.75rem 1rem;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #f3eed9;
  }
}
.header.is-sticky {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #f3eed9;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.header__logo {
  font-size: 2rem;
  font-weight: 700;
  color: #433d3b;
  text-decoration: none;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .header__logo {
    font-size: 1.8rem;
  }
}
@media (max-width: 799px) {
  .header__logo {
    font-size: 1.5rem;
  }
}
.header__logo span {
  color: #f9c74f;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}
@media (max-width: 1023px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  width: 30px;
  height: 3px;
  background: #433d3b;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background: #ffffff;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: translateY(0);
  }
}
.header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .header__nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.header__nav ul a {
  text-decoration: none;
  font-weight: 600;
  color: #3d3431;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .header__nav ul a {
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .header__nav ul a:last-child {
    border-bottom: none;
  }
}
.header__nav ul a:hover {
  color: #f9c74f;
}
@media (max-width: 1023px) {
  .header__nav ul a:hover {
    background: #f8f8f8;
  }
}
.header__overlay {
  display: none;
}
@media (max-width: 1023px) {
  .header__overlay {
    position: fixed;
    top: 70vh;
    left: 0;
    width: 100%;
    height: 30vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
  }
  .header__overlay.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

main section {
  overflow-x: hidden;
}

.banner {
  margin: 0;
  background: #ffffff;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}
@media (min-width: 1367px) {
  .banner {
    min-height: 100vh;
    height: 100dvh;
    align-items: stretch;
  }
}
@media (max-width: 1366px) {
  .banner {
    height: auto;
    min-height: 80vh;
    align-items: flex-start;
    padding-top: 70px;
  }
}
@media (max-width: 600px) {
  .banner {
    padding-top: 64px;
  }
}
.banner .banner__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
}
@media (min-width: 1367px) {
  .banner .banner__container {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100vh;
    min-height: 100dvh;
  }
}
@media (max-width: 1366px) {
  .banner .banner__container {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: calc(80vh - 70px);
    width: 100%;
  }
}
.banner .banner__container__image {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1367px) {
  .banner .banner__container__image {
    height: 100vh;
    min-height: 100dvh;
  }
}
@media (max-width: 1366px) {
  .banner .banner__container__image {
    order: -1;
    width: 100%;
    height: 48vh;
    min-height: 360px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .banner .banner__container__image {
    height: 48vh;
    min-height: 300px;
  }
}
.banner .banner__container__image img {
  object-fit: cover;
  width: 100%;
  display: block;
  z-index: 1;
  transition: transform 0.4s;
}
@media (min-width: 1367px) {
  .banner .banner__container__image img {
    height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    object-position: right center;
  }
}
@media (max-width: 1366px) {
  .banner .banner__container__image img {
    height: 100%;
    min-height: unset;
    max-height: 100%;
    object-position: center 20%;
  }
}
.banner .banner__container__image::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 1367px) {
  .banner .banner__container__image::after {
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  }
}
@media (max-width: 1366px) {
  .banner .banner__container__image::after {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  }
}
.banner .banner__container__text {
  display: flex;
  flex-direction: column;
  z-index: 2;
  animation: fadein 0.7s linear;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1367px) {
  .banner .banner__container__text {
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
    height: 100%;
  }
}
@media (max-width: 1366px) {
  .banner .banner__container__text {
    flex: 1;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 3.5rem 2.5rem;
  }
}
@media (max-width: 768px) {
  .banner .banner__container__text {
    padding: 1.75rem 2rem 2.5rem;
  }
}
@media (max-width: 480px) {
  .banner .banner__container__text {
    padding: 1.5rem 1.25rem 2.5rem;
  }
}
.banner .banner__container__text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2.8rem;
}
@media (max-width: 1366px) {
  .banner .banner__container__text p {
    font-size: 17px;
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .banner .banner__container__text p {
    font-size: 15px;
    margin-bottom: 1.25rem;
    max-width: 460px;
  }
}
.banner .banner__container__text button {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.2px;
  font-weight: 500;
  padding: 1rem 50px;
  border-radius: 8px;
  background: transparent;
  color: #433d3b;
  border: 2px solid #433d3b;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.2s, border-color 0.2s;
}
@media (min-width: 1367px) {
  .banner .banner__container__text button {
    margin: 30px auto 0;
  }
}
@media (max-width: 1366px) {
  .banner .banner__container__text button {
    margin: 0 auto;
    min-height: 48px;
    padding: 0.9rem 3rem;
  }
}
@media (max-width: 480px) {
  .banner .banner__container__text button {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.5rem;
  }
}
.banner .banner__container__text button a {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.banner .banner__container__text button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #f9c74f;
  z-index: 1;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}
.banner .banner__container__text button:hover, .banner .banner__container__text button:focus {
  color: #ffffff;
  border-color: #f9c74f;
}
.banner .banner__container__text button:hover::before, .banner .banner__container__text button:focus::before {
  width: 100%;
}

.how-we-work {
  background: #ffffff;
  padding: 10rem 0;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .how-we-work {
    padding: 5rem 2rem;
  }
}
@media (max-width: 799px) {
  .how-we-work {
    padding: 3rem 1rem;
  }
}
.how-we-work__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}
@media (max-width: 1023px) {
  .how-we-work__container {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.how-we-work__step {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.2rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 240px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 799px) {
  .how-we-work__step {
    padding: 1.5rem 1rem;
    min-width: auto;
  }
}
.how-we-work__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
@media (max-width: 799px) {
  .how-we-work__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }
}
.how-we-work__icon--yellow {
  background: #f9c74f;
}
.how-we-work__icon--blue {
  background: #77d2ee;
}
.how-we-work__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
@media (max-width: 799px) {
  .how-we-work__title {
    font-size: 1.1rem;
  }
}
.how-we-work__title span {
  font-weight: 900;
  color: #433d3b;
}
.how-we-work p {
  font-size: 1.05rem;
  color: #3d3431;
}
@media (max-width: 799px) {
  .how-we-work p {
    font-size: 0.95rem;
  }
}
.how-we-work__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
}
@media (max-width: 1023px) {
  .how-we-work__arrow {
    transform: rotate(90deg);
    margin: 1.2rem 0;
  }
}

.about-hero {
  background-color: #ffffff;
  padding: 20px 2rem;
}
@media (max-width: 799px) {
  .about-hero {
    padding: 2rem 1rem;
  }
}
.about-hero__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 20px;
  height: 100vh;
  min-height: 480px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .about-hero__container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    gap: 2rem;
  }
}
@media (max-width: 799px) {
  .about-hero__container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    gap: 1.5rem;
  }
}
.about-hero__image {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 480px;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .about-hero__image {
    height: 400px;
    min-height: 400px;
    order: -1;
  }
}
@media (max-width: 799px) {
  .about-hero__image {
    height: 300px;
    min-height: 300px;
    order: -1;
  }
}
.about-hero__image img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  max-width: 100%;
  max-height: 100vh;
  display: block;
  transition: transform 0.4s;
  z-index: 1;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .about-hero__image img {
    height: 400px;
    min-height: 400px;
    object-position: center;
  }
}
@media (max-width: 799px) {
  .about-hero__image img {
    height: 300px;
    min-height: 300px;
  }
}
@media (max-width: 799px) {
  .about-hero__image::after, .about-hero__image::before {
    display: none;
  }
}
.about-hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 2;
  pointer-events: none;
  display: block;
}
.about-hero__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 2;
  pointer-events: none;
  display: block;
}
.about-hero__text {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
@media (max-width: 799px) {
  .about-hero__text {
    padding: 1rem;
  }
}
.about-hero__text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #433d3b;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .about-hero__text h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 799px) {
  .about-hero__text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.about-hero__text h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #433d3b;
}
@media (max-width: 799px) {
  .about-hero__text h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}
.about-hero__text p {
  margin-bottom: 1rem;
}
@media (max-width: 799px) {
  .about-hero__text p {
    font-size: 0.95rem;
  }
}
.about-hero__text ul {
  list-style-type: none;
  padding-left: 0;
}
.about-hero__text ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}
@media (max-width: 799px) {
  .about-hero__text ul li {
    font-size: 0.95rem;
  }
}
.about-hero__text ul li::before {
  content: "✓";
  color: #f9c74f;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.services-tiles__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.services-tiles__grid .service-box:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.services-tiles__grid .service-box:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}
.services-tiles__grid .service-box:nth-child(4) {
  grid-column: 4/5;
  grid-row: 1/2;
}
.services-tiles__grid .service-box:nth-child(5) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.services-tiles__grid .service-box:nth-child(6) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.services-tiles__grid .service-box:nth-child(7) {
  grid-column: 4/5;
  grid-row: 2/3;
}
.services-tiles__grid .services-tiles__main-tile {
  grid-row: 1/3;
  grid-column: 1/2;
}
@media (min-width: 1025px) and (max-width: 1366px) and (orientation: landscape) {
  .services-tiles__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    padding: 4rem 3rem;
  }
  .services-tiles__grid .services-tiles__main-tile {
    grid-column: 1/4;
    grid-row: 1/2;
    padding: 3rem;
  }
  .services-tiles__grid .services-tiles__main-tile h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  .services-tiles__grid .services-tiles__main-tile p {
    font-size: 1.2rem;
  }
  .services-tiles__grid .service-box:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(6) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box {
    min-height: 180px;
    padding: 2rem 1.5rem;
  }
  .services-tiles__grid .service-box h3 {
    font-size: 1.3rem;
  }
  .services-tiles__grid .service-box p {
    font-size: 1rem;
  }
}
@media (min-width: 834px) and (max-width: 1024px) {
  .services-tiles__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.8rem;
    padding: 3rem 2rem;
  }
  .services-tiles__grid .services-tiles__main-tile {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .services-tiles__grid .services-tiles__main-tile h2 {
    font-size: 2.2rem;
  }
  .services-tiles__grid .services-tiles__main-tile p {
    font-size: 1.1rem;
  }
  .services-tiles__grid .service-box:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(6) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .services-tiles__grid .service-box:nth-child(7) {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .services-tiles__grid .service-box {
    min-height: 160px;
  }
}
@media (max-width: 833px) {
  .services-tiles__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .services-tiles__grid .services-tiles__main-tile {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .services-tiles__grid .services-tiles__main-tile h2 {
    font-size: 1.8rem;
  }
  .services-tiles__grid .service-box:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .services-tiles__grid .service-box:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .services-tiles__grid .service-box:nth-child(6) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .services-tiles__grid .service-box:nth-child(7) {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .services-tiles__grid .service-box {
    min-height: unset;
  }
}
@media (max-width: 500px) {
  .services-tiles__grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }
  .services-tiles__grid .services-tiles__main-tile {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .services-tiles__grid .service-box:nth-child(n) {
    grid-column: 1/2;
    grid-row: auto;
  }
}
.services-tiles__grid .services-tiles__main-tile {
  background: #e2f6fc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 2.8rem 2rem;
  box-shadow: 0 9px 32px rgba(80, 170, 220, 0.07);
}
.services-tiles__grid .services-tiles__main-tile .services-tiles__subtitle {
  font-size: 1.11rem;
  font-weight: 700;
  color: #2aafb9;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-tiles__grid .services-tiles__main-tile h2 {
  font-size: 2.7rem;
  font-weight: 880;
  margin-bottom: 1.6rem;
  line-height: 1.2;
  color: #26304e;
}
.services-tiles__grid .services-tiles__main-tile p {
  font-size: 1.19rem;
  margin-bottom: 2rem;
  color: #26304e;
  line-height: 1.6;
}
.services-tiles__grid .services-tiles__main-tile .services-tiles__cta {
  background: #28b6e3;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  font-size: 1.12rem;
  transition: background 0.18s;
  display: inline-block;
  align-self: flex-start;
}
.services-tiles__grid .services-tiles__main-tile .services-tiles__cta:hover {
  background: #f9c74f;
  color: #433d3b;
}
.services-tiles__grid .service-box {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.6rem;
  text-align: left;
  box-shadow: 0 6px 28px rgba(60, 46, 31, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 210px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-tiles__grid .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(60, 46, 31, 0.12);
}
.services-tiles__grid .service-box h3 {
  font-size: 1.32rem;
  font-weight: 730;
  margin-bottom: 1.07rem;
  color: #26304e;
}
.services-tiles__grid .service-box p {
  color: #4a555f;
  font-size: 1.01rem;
  line-height: 1.5;
}
.services-tiles__grid .service-box .box-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1.08rem;
}
.services-tiles__grid .service-box.highlight-box {
  background: #28b6e3;
  color: #fff;
}
.services-tiles__grid .service-box.highlight-box h3, .services-tiles__grid .service-box.highlight-box p {
  color: #fff;
}

.projects-slider__swiper,
.project-hero__container {
  height: 80vh;
  min-height: 440px;
  max-width: 1740px;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .projects-slider__swiper,
  .project-hero__container {
    height: auto;
    min-height: auto;
  }
}
@media (max-width: 799px) {
  .projects-slider__swiper,
  .project-hero__container {
    height: auto;
    min-height: auto;
  }
}

.swiper-slide {
  height: 100%;
  min-height: 440px;
  width: 100% !important;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .swiper-slide {
    height: auto;
    min-height: auto;
  }
}
@media (max-width: 799px) {
  .swiper-slide {
    height: auto;
    min-height: auto;
  }
}
.swiper-slide .project-hero__container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .swiper-slide .project-hero__container {
    flex-direction: column;
  }
}
@media (max-width: 799px) {
  .swiper-slide .project-hero__container {
    flex-direction: column;
  }
}

.project-hero__image {
  flex: 0 0 52%;
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .project-hero__image {
    flex: 0 0 100%;
    height: 400px;
  }
}
@media (max-width: 799px) {
  .project-hero__image {
    flex: 0 0 100%;
    height: 300px;
  }
}
.project-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  max-height: 80vh;
  border-radius: 0;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .project-hero__image img {
    max-height: 400px;
  }
}
@media (max-width: 799px) {
  .project-hero__image img {
    max-height: 300px;
  }
}

.project-hero__content {
  flex: 0 0 48%;
  width: 0;
  min-width: 0;
  height: 100%;
  min-height: 440px;
  padding: 50px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  overflow: auto;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .project-hero__content {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 799px) {
  .project-hero__content {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    padding: 1.5rem 1rem;
  }
}

.project-hero__counter {
  font-family: "Inter", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #f9c74f;
  letter-spacing: 0.09em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 799px) {
  .project-hero__counter {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

h2.project-hero__title {
  font-size: 20px !important;
  font-weight: 500;
  color: #232020;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1.1rem;
  text-align: left;
}
@media (max-width: 799px) {
  h2.project-hero__title {
    font-size: 18px !important;
  }
}

.project-hero__meta {
  display: flex;
  gap: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #f9c74f;
  margin-bottom: 1.18rem;
}
@media (max-width: 799px) {
  .project-hero__meta {
    font-size: 0.9rem;
  }
}
.project-hero__meta .meta-label,
.project-hero__meta .meta-value {
  color: #f9c74f;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
@media (max-width: 799px) {
  .project-hero__meta .meta-label,
  .project-hero__meta .meta-value {
    font-size: 0.9rem;
  }
}

.project-hero__desc {
  font-size: 15px;
  line-height: 1.62;
  color: #232020;
  margin-bottom: 1.5rem;
  max-width: 99%;
}
@media (max-width: 799px) {
  .project-hero__desc {
    font-size: 14px;
  }
}
.project-hero__desc .desc-heading {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.27rem;
  color: #3d3431;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
@media (max-width: 799px) {
  .project-hero__desc .desc-heading {
    font-size: 0.9rem;
  }
}
.project-hero__desc .desc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.project-hero__desc .desc-list li {
  position: relative;
  padding-left: 1.45em;
  margin-bottom: 0.6em;
  color: #233058;
  font-size: 0.92em;
}
@media (max-width: 799px) {
  .project-hero__desc .desc-list li {
    font-size: 0.88em;
  }
}
.project-hero__desc .desc-list li:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2.2px;
  background: #f9c74f;
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-48%);
  border-radius: 1px;
}

#gallery {
  margin-bottom: 10%;
}
@media (max-width: 799px) {
  #gallery {
    margin-bottom: 5%;
  }
}

.gallery-btn {
  margin-top: 0.7rem;
  font-size: 0.97rem;
  font-weight: 700;
  background: #f9c74f;
  color: #3d3431;
  padding: 0.82rem 2.3rem;
  border-radius: 9px;
  border: none;
  box-shadow: 0 4px 24px rgba(249, 199, 79, 0.12);
  cursor: pointer;
  position: relative;
  min-height: 44px;
}
@media (max-width: 799px) {
  .gallery-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
.gallery-btn:hover, .gallery-btn:focus {
  background: #ffd747;
  color: #2e2408;
}

.swiper-button-next, .swiper-button-prev {
  background: transparent;
  color: #f9c74f;
  width: 30px;
  height: 30px;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 3;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 32px;
  color: #f9c74f;
  background: transparent;
}
@media (max-width: 1024px) {
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
}
.swiper-button-next:hover, .swiper-button-next:focus, .swiper-button-prev:hover, .swiper-button-prev:focus {
  color: #ffd747;
  background: transparent;
}

@media (max-width: 799px) {
  .swiper-pagination {
    display: none !important;
  }
}

.contact-section {
  background: transparent;
  padding: 0;
  position: relative;
  margin-top: 5%;
  overflow: hidden;
}
.contact-section .contact-section__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-section .contact-section__content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-section .contact-section__form-tile {
  z-index: 2;
  width: 70%;
  background: rgba(249, 199, 79, 0.55);
  backdrop-filter: blur(5px);
  border-radius: 0;
  padding: 2.2rem 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .contact-section .contact-section__form-tile {
    width: 85%;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
.contact-section .contact-section__form-tile h2 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #433d3b;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile h2 {
    font-size: 1.2rem;
  }
}
.contact-section .contact-section__form-tile p {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  color: #433d3b;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile p {
    font-size: 0.85rem;
  }
}
.contact-section .contact-section__form-tile .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.08rem;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form {
    gap: 1rem;
  }
}
.contact-section .contact-section__form-tile .contact-form label {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-section .contact-section__form-tile .contact-form label span {
  margin-bottom: 0.5rem;
  color: #433d3b;
  font-weight: 500;
  font-size: 0.95rem;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form label span {
    font-size: 0.9rem;
  }
}
.contact-section .contact-section__form-tile .contact-form .form-row {
  display: flex;
  gap: 1.08rem;
  width: 100%;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-section .contact-section__form-tile .contact-form .form-column-left,
.contact-section .contact-section__form-tile .contact-form .form-column-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.08rem;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form .form-column-left,
  .contact-section .contact-section__form-tile .contact-form .form-column-right {
    gap: 1rem;
  }
}
.contact-section .contact-section__form-tile .contact-form .form-column-right .textarea-label {
  height: 100%;
}
.contact-section .contact-section__form-tile .contact-form .form-column-right .textarea-label textarea {
  height: 100%;
  flex: 1;
}
.contact-section .contact-section__form-tile .contact-form .file-label span {
  margin-bottom: 0.5rem;
}
.contact-section .contact-section__form-tile .contact-form .file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 6px;
  padding: 0.91rem 1.17rem;
  box-shadow: 0 2px 10px rgba(220, 180, 20, 0.09);
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form .file-input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-section .contact-section__form-tile .contact-form .btn-file {
  background: #433d3b;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
  min-height: 44px;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form .btn-file {
    width: 100%;
  }
}
.contact-section .contact-section__form-tile .contact-form .btn-file:hover {
  background: #5a5450;
}
.contact-section .contact-section__form-tile .contact-form .file-status {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form .file-status {
    font-size: 0.8rem;
  }
}
.contact-section .contact-section__form-tile .contact-form input, .contact-section .contact-section__form-tile .contact-form textarea {
  border: none;
  border-radius: 6px;
  padding: 0.91rem 1.17rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px rgba(220, 180, 20, 0.09);
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form input, .contact-section .contact-section__form-tile .contact-form textarea {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}
.contact-section .contact-section__form-tile .contact-form textarea {
  resize: vertical;
  min-height: 68px;
  font-family: inherit;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form textarea {
    min-height: 100px;
  }
}
.contact-section .contact-section__form-tile .contact-form button[type=submit] {
  background: #433d3b;
  display: inline-block;
  width: 30%;
  margin: 0 auto;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.9rem 0;
  border-radius: 7px;
  border: none;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.18s;
  min-height: 44px;
}
@media (max-width: 799px) {
  .contact-section .contact-section__form-tile .contact-form button[type=submit] {
    width: 100%;
    font-size: 1rem;
  }
}
.contact-section .contact-section__form-tile .contact-form button[type=submit]:hover {
  background: #ffeb99;
  color: #423d13;
}
.contact-section .contact-section__company-tile {
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 0;
  padding: 2.2rem 2.1rem 2.7rem 2.1rem;
  box-shadow: 0 6px 28px rgba(60, 46, 31, 0.07);
}
@media (max-width: 799px) {
  .contact-section .contact-section__company-tile {
    padding: 1.5rem 1rem;
  }
}
.contact-section .contact-section__company-tile .contact-icons-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .contact-section .contact-section__company-tile .contact-icons-row {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}
@media (max-width: 799px) {
  .contact-section .contact-section__company-tile .contact-icons-row {
    flex-direction: column;
    gap: 1.3rem;
  }
}
.contact-section .contact-section__company-tile .contact-icons-row .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.01rem;
  gap: 10px;
}
@media (max-width: 799px) {
  .contact-section .contact-section__company-tile .contact-icons-row .contact-item {
    width: 100%;
    font-size: 0.95rem;
  }
}
.contact-section .contact-section__company-tile .contact-icons-row .contact-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 0.58rem;
  display: block;
  object-fit: contain;
}
@media (max-width: 799px) {
  .contact-section .contact-section__company-tile .contact-icons-row .contact-item img {
    width: 32px;
    height: 32px;
  }
}
.contact-section .contact-section__company-tile .contact-icons-row .contact-item a {
  color: #2aafb9;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: color 0.14s;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
.contact-section .contact-section__company-tile .contact-icons-row .contact-item a:hover {
  color: #f9c74f;
}

.services, .contact {
  padding: 4rem 2rem;
}
@media (max-width: 799px) {
  .services, .contact {
    padding: 2rem 1rem;
  }
}
.services h2, .contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #433d3b;
  margin-bottom: 2rem;
}
@media (min-width: 800px) and (max-width: 1023px) {
  .services h2, .contact h2 {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .services h2, .contact h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}

.form-notification {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 320px;
  max-width: 560px;
  width: 90%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.form-notification--success {
  background: #e6f9f0;
  border: 1.5px solid #2ecc71;
  color: #1a7a45;
}
.form-notification--success .form-notification__icon {
  color: #2ecc71;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-notification--error {
  background: #fdf0f0;
  border: 1.5px solid #e74c3c;
  color: #922b21;
}
.form-notification--error .form-notification__icon {
  color: #e74c3c;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-notification p {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.form-notification__close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  padding: 0 0.25rem;
}
.form-notification__close:hover {
  opacity: 1;
}

.footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 1.5rem 1rem;
}
@media (max-width: 799px) {
  .footer {
    font-size: 0.85rem;
    padding: 1rem 0.5rem;
    text-align: center;
  }
}
.footer p {
  margin: 0;
  display: inline;
}

/*# sourceMappingURL=style.css.map */
