/* =========================================================
   NEO BUILDER — HOME PAGE CLEAN CSS
   File: assets/css/neobuilder-home.css
========================================================= */

/* ================= SF PRO DISPLAY ================= */

@font-face {
  font-family: "SF Pro";
  src: url("../fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src: url("../fonts/sf-pro-display/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 510;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src: url("../fonts/sf-pro-display/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 590;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro";
  src: url("../fonts/sf-pro-display/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ================= ROOT / GLOBAL ================= */

:root {
  --MainBlueColor: #184EC5;
  --Blue: #4076FF;
  --White: #FFFFFF;
  --Black: #1C1C1E;
  --TextGray: #6B7280;
  --Line: #DDE3EC;
  --BgLight: #F4F6F9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Onest", sans-serif;
  background: #ffffff;
  color: var(--Black);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

.hero-desc-mobile,
.services-link-mobile,
.projects-link-mobile,
.reviews-link-mobile {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 809px;
  margin: 0;
  overflow: hidden;

  background-image: var(--hero-main-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1c222b;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 8, 18, 0.68) 0%,
      rgba(3, 8, 18, 0.48) 42%,
      rgba(3, 8, 18, 0.25) 72%,
      rgba(3, 8, 18, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 8, 18, 0.42) 0%,
      rgba(3, 8, 18, 0.10) 45%,
      rgba(3, 8, 18, 0.72) 100%
    );
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 1439px;
  max-width: 100%;
  height: 809px;
  margin: 0 auto;
}

.hero-container {
  position: absolute;
  top: 184px;
  left: 50%;
  transform: translateX(-50%);

  width: 1202px;
  max-width: calc(100% - 80px);
  height: 511px;
  z-index: 5;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top {
  display: flex;
  flex-direction: column;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  color: var(--MainBlueColor);
}

.hero-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--MainBlueColor);
  border-radius: 20px;
}

.hero-title {
  margin: 0;
  padding: 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 590;
  font-size: 112px;
  line-height: 110px;
  letter-spacing: -4.99px;
  color: #ffffff;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.hero-desc {
  margin: 0;
  width: 580px;
  max-width: 580px;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 100px;
  text-decoration: none;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  width: 165px;
  height: 41px;
  padding: 16px 28px;
  background: var(--MainBlueColor);
  color: #ffffff;
  border: 1px solid var(--MainBlueColor);
}

.btn-secondary {
  width: 176px;
  height: 41px;
  padding: 16px 28px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.arrow,
.btn .arrow,
.btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow img,
.btn .arrow img,
.btn span img {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
  width: 100%;
  background: #ffffff;
  padding: 118px 0 119px;
}

.trust-container {
  width: 1202px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.trust-left {
  width: 355px;
  flex: 0 0 355px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-kicker,
.services-kicker,
.projects-kicker,
.why-kicker,
.digital-kicker,
.contact-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 24px 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  color: var(--MainBlueColor);
}

.trust-kicker {
  margin-bottom: 10px;
}

.trust-kicker::before,
.services-kicker::before,
.projects-kicker::before,
.why-kicker::before,
.digital-kicker::before,
.contact-kicker::before {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--MainBlueColor);
  border-radius: 20px;
}

.trust-title,
.services-title,
.projects-title,
.why-title,
.reviews-title,
.contact-title {
  margin: 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 510;
  font-size: 64px;
  line-height: 71.81px;
  letter-spacing: -2.11px;
  color: var(--Black);
}

.trust-desc {
  margin: 12px 0 0 0;
  width: 412px;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--TextGray);
}

.trust-grid {
  width: 734px;
  flex: 0 0 734px;

  display: grid;
  grid-template-columns: repeat(3, 234px);
  grid-template-rows: repeat(2, 174px);
  gap: 19px;
}

.trust-card {
  width: 234px;
  height: 174px;
  padding: 28px 24px 23px;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin: 0 0 12px 0;

  border-radius: 12px;
  background: #DCEBFF;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-number {
  margin: 0 0 8px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  letter-spacing: -1.02px;
  color: var(--Black);
}

.trust-text {
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: var(--TextGray);
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  width: 100%;
  background: var(--BgLight);
  padding: 119px 0;
}

.services-container {
  width: 1202px;
  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.services-intro {
  width: 340px;
  flex: 0 0 340px;
}

.services-title {
  margin: 0 0 18px 0;
}

.services-desc,
.projects-desc,
.why-desc,
.contact-desc {
  margin: 0 0 28px 0;
  width: 412px;
  max-width: 412px;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--TextGray);
}

.services-link,
.projects-link,
.why-link,
.reviews-link {
  align-items: center;
  gap: 12px;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;

  color: var(--MainBlueColor);
  text-decoration: none;
}

.services-grid {
  width: 802px;
  flex: 0 0 802px;

  display: grid;
  grid-template-columns: repeat(2, 393px);
  gap: 16px;
}

.service-card {
  width: 393px;
  height: 470px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;
  color: var(--Black);
}

.service-card-image-wrap {
  position: relative;
  width: 393px;
  height: 238px;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-card-body {
  padding: 26px 28px 28px;
}

.service-card-head,
.project-head,
.service-more-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-card-head {
  align-items: center;
  margin-bottom: 18px;
}

.service-card-title {
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.12px;
  letter-spacing: -0.56px;
  color: var(--Black);
}

.service-card-arrow,
.project-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  border: 1px solid var(--Line);
  border-radius: 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: var(--Black);
}

.service-card-arrow span,
.project-arrow span {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.service-card-text {
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25.6px;
  color: var(--TextGray);
}

/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.projects-container {
  width: 1202px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 340px 806px;
  column-gap: 56px;
  align-items: start;
}

.projects-intro {
  width: 340px;
}

.projects-title {
  margin: 0 0 18px 0;
}

.projects-grid {
  width: 806px;

  display: grid;
  grid-template-columns: repeat(2, 395px);
  gap: 16px;
}

.project-card {
  width: 395px;
  height: 429px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;
  color: var(--Black);
}

.project-image-wrap {
  position: relative;
  width: 392px;
  height: 269.17px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--Line);
}

.project-image {
  width: 392px;
  height: 269.17px;
  object-fit: cover;
}

.project-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-body {
  padding: 5px 24px 20px;
}

.project-head {
  margin-bottom: 14px;
}

.project-title {
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.12px;
  letter-spacing: -0.56px;
  color: var(--Black);
}

.project-meta {
  display: grid;
  grid-template-columns: 54px 54px 86px;
  column-gap: 18px;
  align-items: start;
}

.project-meta div {
  min-width: 0;
}

.project-meta span {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 12.7px;
  line-height: 23.04px;
  color: var(--Black);
}

.project-meta strong {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 14.8px;
  line-height: 26.11px;
  color: var(--MainBlueColor);
}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
  width: 100%;
  background: var(--BgLight);
  padding: 119px 0;
}

.why-container {
  width: 1202px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 380px 802px;
  column-gap: 20px;
  align-items: start;
}

.why-intro {
  width: 380px;
}

.why-title {
  margin: 0 0 18px 0;
  font-size: 63px;
}

.why-grid {
  width: 802px;

  display: grid;
  grid-template-columns: repeat(2, 393px);
  gap: 5px;
  margin-top: 25px;
}

.why-card {
  width: 393px;
  height: 174px;
  padding: 28px 28px 24px;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 16px;
}

.why-number {
  margin: 0 0 18px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  color: var(--MainBlueColor);
}

.why-card-title {
  margin: 0 0 13px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 21.6px;
  line-height: 22.46px;
  letter-spacing: -0.43px;
  color: var(--Black);
}

.why-card-desc {
  margin: 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--TextGray);
}

/* =========================================================
   REVIEWS SECTION
========================================================= */

.reviews-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.reviews-container {
  width: 1202px;
  margin: 0 auto;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.reviews-title {
  margin: 0;
}

.reviews-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 395px);
  gap: 8px;
}

.review-card {
  width: 395px;
  height: 352.095px;
  padding: 34px 30px;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;

  display: flex;
  flex-direction: column;
}

.review-quote {
  width: 28px;
  height: 22px;
  margin: 0 0 28px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.review-quote img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-text {
  margin: 0;
  width: 333px;

  font-family: "SF Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--Black);
}

.review-line {
  width: 100%;
  height: 1px;
  margin: 27px 0 28px;
  background: var(--Line);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-photo {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  object-fit: cover;
  flex: 0 0 52px;
}

.review-author-info h3 {
  margin: 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: -0.16px;
  color: var(--Black);
}

.review-author-info p {
  margin: 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20.8px;
  color: var(--TextGray);
}

.review-author-info span {
  display: block;
  margin-top: 1px;

  font-family: "SF Pro", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--MainBlueColor);
}

/* =========================================================
   DIGITAL SECTION
========================================================= */

.digital-section {
  width: 100%;
  background: var(--BgLight);
  padding: 119px 0;
}

.digital-container {
  width: 1202px;
  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.digital-left {
  width: 572px;
  height: 485px;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

.digital-content {
  width: 572px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.digital-text {
  margin: 0;
  max-width: 572px;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--TextGray);
}

.digital-code-box {
  width: 331px;
  min-height: 99.59px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 3px;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 14px;
}

.digital-code-box span {
  display: block;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--TextGray);
}

.digital-code-box strong {
  display: block;

  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--Black);
}

.digital-logos {
  width: 572px;
  min-height: 80px;

  display: flex;
  align-items: center;
  gap: 24px;
}

.digital-logos img {
  width: auto;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.digital-right {
  width: 572px;
  height: 447.13px;
  overflow: hidden;
  border-radius: 16px;
}

.digital-right img {
  width: 572px;
  height: 447.13px;
  object-fit: cover;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.contact-container {
  width: 1202px;
  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-left {
  width: 572px;
  padding-top: 7px;
}

.contact-title {
  margin: 0 0 24px 0;
}

.contact-desc {
  margin-bottom: 54px;
  max-width: 520px;
}

.contact-list {
  width: 572px;
}

.contact-item {
  width: 572px;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 0 0 20px 0;
  margin-bottom: 20px;

  border-bottom: 1px solid var(--Line);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  border-radius: 12px;
  background: #DCEBFF;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.contact-info span {
  display: block;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--TextGray);
}

.contact-info strong {
  display: block;

  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 27.2px;
  color: var(--Black);
}

.contact-form {
  width: 572px;
  min-height: 747.99px;
  padding: 40px;

  display: flex;
  flex-direction: column;
  gap: 24px;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.form-head h3,
.contact-form-head h3 {
  margin: 0 0 6px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 510;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.6px;
  color: var(--Black);
}

.form-head p,
.contact-form-head p {
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--TextGray);
}

.form-group,
.contact-form-group {
  width: 490px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-row,
.contact-form-row {
  width: 490px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.form-group-half,
.contact-form-group-half {
  width: 237px;
}

.form-group label,
.contact-form-group label {
  font-family: "Onest", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 20.8px;
  color: var(--Black);
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 490px;

  background: var(--BgLight);
  border: 1px solid var(--Line);
  border-radius: 12px;
  outline: none;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--Black);
}

.form-group input,
.form-group select,
.contact-form-input,
.contact-form-select {
  height: 59px;
  padding: 16px 17px 18px;
}

.form-group textarea,
.contact-form-textarea {
  height: 138px;
  padding: 16px 17px 24px;
  resize: none;
  line-height: 24px;
}

.form-group-half input {
  width: 237px;
}

.select-wrap,
.contact-select-wrap {
  position: relative;
  width: 490px;
}

.select-wrap::after,
.contact-select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-54%);
  font-size: 18px;
  line-height: 1;
  color: var(--TextGray);
  pointer-events: none;
}

.contact-submit {
  width: 490px;
  height: 48px;

  border: none;
  border-radius: 33554400px;

  background: var(--MainBlueColor);
  box-shadow: 0px 10px 15px 0px #2563EB47;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20.8px;
  color: #ffffff;

  cursor: pointer;
  padding: 18px;
}

.form-note,
.contact-form-note {
  margin: -7px 0 0 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20.8px;
  text-align: center;
  color: #8A94A6;
}

/* =========================================================
   RESPONSIVE — DESKTOP / TABLET
========================================================= */

@media (max-width: 1300px) {
  .trust-container,
  .services-container,
  .projects-container,
  .why-container,
  .reviews-container,
  .digital-container,
  .contact-container {
    width: calc(100% - 80px);
  }

  .hero-container {
    max-width: calc(100% - 80px);
  }

  .hero-title {
    font-size: 92px;
    line-height: 94px;
    letter-spacing: -3.8px;
  }

  .hero-desc {
    width: 540px;
    max-width: 540px;
  }

  .hero-bottom {
    gap: 40px;
  }

  .trust-container {
    gap: 40px;
  }

  .trust-left {
    width: 330px;
    flex: 0 0 330px;
  }

  .trust-grid {
    width: calc(100% - 370px);
    flex: 0 0 calc(100% - 370px);
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-card {
    width: 100%;
  }

  .services-container {
    gap: 40px;
  }

  .services-intro {
    width: 320px;
    flex: 0 0 320px;
  }

  .services-grid {
    width: calc(100% - 360px);
    flex: 0 0 calc(100% - 360px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card-image-wrap {
    width: 100%;
  }

  .projects-container {
    grid-template-columns: 320px 1fr;
    column-gap: 40px;
  }

  .projects-intro {
    width: 320px;
  }

  .projects-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-card {
    width: 100%;
  }

  .project-image-wrap {
    width: 100%;
  }

  .project-image {
    width: 100%;
  }

  .why-container {
    grid-template-columns: 360px 1fr;
    column-gap: 32px;
  }

  .why-intro {
    width: 360px;
  }

  .why-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    width: 100%;
  }

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

  .review-card,
  .review-text {
    width: 100%;
  }

  .digital-container {
    gap: 40px;
  }

  .digital-left,
  .digital-content,
  .digital-right {
    width: calc(50% - 20px);
  }

  .digital-right img {
    width: 100%;
  }

  .digital-logos {
    width: 100%;
  }

  .contact-container {
    gap: 40px;
  }

  .contact-left,
  .contact-form {
    width: calc(50% - 20px);
  }

  .contact-list,
  .contact-item,
  .form-group,
  .form-row,
  .select-wrap,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .contact-submit,
  .contact-form-group,
  .contact-form-row,
  .contact-form-input,
  .contact-form-select,
  .contact-form-textarea,
  .contact-select-wrap {
    width: 100%;
  }

  .form-group-half,
  .contact-form-group-half {
    width: calc(50% - 8px);
  }

  .form-group-half input {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-section,
  .hero-layout {
    height: 720px;
  }

  .hero-container {
    top: 160px;
    height: 470px;
  }

  .hero-title {
    font-size: 72px;
    line-height: 76px;
    letter-spacing: -3px;
  }

  .hero-bottom {
    display: block;
  }

  .hero-desc {
    margin-bottom: 28px;
  }

  .trust-section,
  .services-section,
  .projects-section,
  .why-section,
  .reviews-section,
  .digital-section,
  .contact-section {
    padding: 80px 0;
  }

  .trust-container,
  .services-container,
  .projects-container,
  .why-container,
  .digital-container,
  .contact-container {
    width: calc(100% - 48px);
    display: block;
  }

  .reviews-container {
    width: calc(100% - 48px);
  }

  .trust-left,
  .services-intro,
  .projects-intro,
  .why-intro,
  .contact-left {
    width: 100%;
    margin-bottom: 34px;
  }

  .trust-left {
    display: block;
  }

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

  .services-grid,
  .projects-grid,
  .why-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-title,
  .projects-title,
  .why-title,
  .reviews-title,
  .contact-title {
    font-size: 52px;
    line-height: 58px;
    letter-spacing: -1.8px;
  }

  .services-desc,
  .projects-desc,
  .why-desc,
  .contact-desc {
    max-width: 620px;
    width: 100%;
  }

  .service-card,
  .project-card {
    width: 100%;
    height: auto;
  }

  .reviews-head {
    display: block;
    margin-bottom: 34px;
  }

  .reviews-title {
    margin-bottom: 22px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .review-card {
    height: auto;
    min-height: 352px;
  }

  .digital-left,
  .digital-content,
  .digital-right {
    width: 100%;
    height: auto;
  }

  .digital-left {
    margin-bottom: 42px;
  }

  .digital-right img {
    width: 100%;
    height: auto;
  }

  .digital-logos {
    flex-wrap: wrap;
    height: auto;
  }

  .contact-form {
    width: 100%;
    height: auto;
  }
}

/* =========================================================
   MOBILE FINAL
========================================================= */

@media (max-width: 575px) {
  .hero-section,
  .hero-layout {
    height: 581px;
  }

  .hero-section {
    background-position: center center;
  }

  .hero-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 8, 18, 0.24) 0%,
        rgba(3, 8, 18, 0.34) 24%,
        rgba(3, 8, 18, 0.58) 64%,
        rgba(3, 8, 18, 0.75) 100%
      );
  }

  .hero-container {
    top: 129px;
    left: 20px;
    right: auto;
    transform: none;

    width: 340px;
    max-width: calc(100% - 40px);
    height: auto;
    display: block;
  }

  .hero-label {
    margin: 0 0 18px 0;

    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 510;
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 1.82px;
    color: #4076FF;
  }

  .hero-label::before {
    width: 30px;
    height: 1.5px;
    background: #4076FF;
  }

  .hero-title {
    width: 340px;
    max-width: 100%;
    margin: 0 0 24px 0;

    font-family: "SF Pro", sans-serif;
    font-weight: 590;
    font-size: 44px;
    line-height: 46.2px;
    letter-spacing: -2px;
    color: #ffffff;
  }

  .hero-title span {
    color: #ffffff;
  }

  .hero-bottom {
    display: block;
    width: 100%;
  }

  .hero-desc {
    display: none;
  }

  .hero-desc-mobile {
    display: block;
    width: 340px;
    max-width: 100%;
    margin: 0 0 28px 0;

    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26.25px;
    color: #ffffff;
  }

  .hero-buttons {
    width: 171px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 171px;
    height: 45px;
    padding: 12px 28px;
    gap: 10px;
    border-radius: 33554400px;

    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
  }

  .btn-primary {
    background: #4076FF;
    border-color: #4076FF;
  }

  .btn-secondary {
    background: transparent;
    border-color: #ffffff;
  }

  .trust-section,
  .services-section,
  .projects-section,
  .why-section,
  .reviews-section,
  .digital-section,
  .contact-section {
    padding: 36px 0 38px;
  }

  .trust-container,
  .services-container,
  .projects-container,
  .why-container,
  .reviews-container,
  .digital-container,
  .contact-container {
    width: calc(100% - 30px);
    max-width: 362px;
    margin: 0 auto;
    padding: 0;
    display: block;
  }

  .trust-kicker,
  .services-kicker,
  .projects-kicker,
  .why-kicker,
  .digital-kicker,
  .contact-kicker {
    margin: 0 0 14px 0;
    gap: 12px;

    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 510;
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 1.82px;
    color: #4076FF;
  }

  .trust-kicker::before,
  .services-kicker::before,
  .projects-kicker::before,
  .why-kicker::before,
  .digital-kicker::before,
  .contact-kicker::before {
    width: 30px;
    height: 1.5px;
    background: #4076FF;
  }

  .trust-title,
  .services-title,
  .projects-title,
  .why-title,
  .reviews-title,
  .contact-title {
    margin: 0 0 14px 0;

    font-family: "SF Pro", sans-serif;
    font-weight: 590;
    font-size: 27.5px;
    line-height: 32.2px;
    letter-spacing: -0.7px;
  }

  .trust-desc,
  .services-desc,
  .projects-desc,
  .why-desc,
  .contact-desc {
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px 0;

    font-family: "Inter", "Onest", sans-serif;
    font-size: 15px;
    line-height: 24.38px;
  }

  .services-link,
  .projects-link,
  .why-link,
  .reviews-link {
    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 510;
    font-size: 13px;
    line-height: 19.5px;
    letter-spacing: 1.68px;
    color: #4076FF;
  }

  .trust-left,
  .services-intro,
  .projects-intro,
  .why-intro,
  .contact-left {
    width: 100%;
    margin-bottom: 24px;
  }

  .trust-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-card {
    width: 100%;
    height: 154px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin: 0 0 16px 0;
  }

  .trust-number {
    font-size: 28px;
    line-height: 30px;
  }

  .trust-text {
    font-size: 13px;
    line-height: 18.5px;
  }

  .services-desc br {
    display: none;
  }

  .services-link-desktop,
  .projects-link:not(.projects-link-mobile),
  .reviews-link:not(.reviews-link-mobile) {
    display: none;
  }

  .services-link-mobile,
  .projects-link-mobile,
  .reviews-link-mobile {
    display: inline-flex;
    margin-top: 24px;
  }

  .services-grid,
  .projects-grid,
  .why-grid,
  .reviews-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    width: 100%;
    height: 378.89px;
    border-radius: 16px;
  }

  .service-card-image-wrap {
    width: 100%;
    height: 217.5px;
  }

  .service-card-icon {
    top: 16px;
    left: 16px;
  }

  .service-card-body {
    padding: 16px 18px 18px;
  }

  .service-card-head {
    margin-bottom: 12px;
  }

  .service-card-title {
    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 510;
    font-size: 20px;
    line-height: 30px;
  }

  .service-card-text {
    font-family: "SF Pro", "Onest", sans-serif;
    font-size: 14px;
    line-height: 23.8px;
  }

  .project-card {
    width: 100%;
    min-height: 342.5px;
    height: auto;
    border-radius: 16px;
  }

  .project-image-wrap {
    width: 100%;
    height: 217.5px;
    margin: 0;
  }

  .project-image {
    width: 100%;
    height: 217.5px;
  }

  .project-body {
    padding: 16px 18px 18px;
  }

  .project-head {
    margin-bottom: 12px;
  }

  .project-title {
    width: calc(100% - 58px);

    font-family: "SF Pro", "Onest", sans-serif;
    font-weight: 510;
    font-size: 18px;
    line-height: 22.5px;
    letter-spacing: -0.45px;
  }

  .project-meta {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6px;
  }

  .project-meta span {
    font-family: "Inter", "Onest", sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 15.13px;
  }

  .project-meta strong {
    font-family: "SF Pro", sans-serif;
    font-weight: 510;
    font-size: 13px;
    line-height: 17.88px;
    color: #4076FF;
    white-space: normal;
  }

  .why-grid {
    gap: 12px;
  }

  .why-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .why-grid {
    margin-top: 0;
  }

  .why-number {
    margin-bottom: 14px;
  }

  .why-card-title {
    font-size: 21.6px;
    line-height: 22.46px;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: 330px;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .review-text {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
  }

  .review-line {
    margin: 24px 0;
  }

  .digital-left,
  .digital-content,
  .digital-right {
    width: 100%;
    height: auto;
  }

  .digital-left {
    gap: 24px;
    margin-bottom: 28px;
  }

  .digital-content {
    gap: 24px;
  }

  .digital-text {
    width: 100%;
    max-width: 100%;

    font-family: "Inter", "Onest", sans-serif;
    font-size: 15px;
    line-height: 24.38px;
  }

  .digital-code-box {
    width: 100%;
    height: auto;
    min-height: 99.59px;
  }

  .digital-logos {
    width: 100%;
    height: auto;
    gap: 1px;
  }

  .digital-logos img {
    max-width: 140px;
    max-height: 53px;
  }

  .digital-right {
    border-radius: 14px;
  }

  .digital-right img {
    width: 100%;
    height: auto;
  }

  .contact-left {
    padding-top: 0;
  }

  .contact-list,
  .contact-item {
    width: 100%;
  }

  .contact-item {
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .contact-form {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 26px 18px 20px;
    gap: 18px;
    border-radius: 24px;
  }

  .form-head h3,
  .contact-form-head h3 {
    font-family: "SF Pro", sans-serif;
    font-weight: 510;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }

  .form-head p,
  .contact-form-head p {
    font-family: "Inter", "Onest", sans-serif;
    font-size: 14px;
    line-height: 21px;
  }

  .form-group,
  .contact-form-group {
    width: 100%;
    gap: 7px;
  }

  .form-row,
  .contact-form-row {
    width: 100%;
    display: flex;
    gap: 12px;
  }

  .form-group-half,
  .contact-form-group-half {
    width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-group-half input,
  .contact-form-input,
  .contact-form-select,
  .contact-form-textarea {
    width: 100%;
    border-radius: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group-half input,
  .contact-form-input,
  .contact-form-select {
    height: 53.5px;
    padding: 16px 16px 14px;
  }

  .form-group textarea,
  .contact-form-textarea {
    height: 126px;
    padding: 14px 16px 20px;
  }

  .select-wrap,
  .contact-select-wrap {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
    height: 47.5px;
    padding: 0 18px;
  }

  .form-note,
  .contact-form-note {
    margin: -4px 0 0;
    font-family: "Inter", "Onest", sans-serif;
    font-size: 14px;
    line-height: 21px;
  }
} 

/* =========================================================
   REALIZACE PAGE — PROJECTS GRID FINAL
   [ text ] [ card 1 ] [ card 2 ]
   [ card 3 ] [ card 4 ] [ card 5 ]
========================================================= */

.projects-page-section {
  width: 100% !important;
  background: #ffffff !important;
  padding: 119px 0 119px !important;
}

.projects-page-container {
  width: 1202px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, 395px) !important;
  gap: 16px !important;
  align-items: start !important;
}

/* лівий текстовий блок */
.projects-mobile-head {
  width: 340px !important;
  margin: 0 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}

/* дуже важливо — картки стають частиною основної сітки */
.projects-page-grid {
  display: contents !important;
}

/* перший ряд */
.projects-page-grid .project-card:nth-child(1) {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.projects-page-grid .project-card:nth-child(2) {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

/* другий ряд */
.projects-page-grid .project-card:nth-child(3) {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

.projects-page-grid .project-card:nth-child(4) {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

.projects-page-grid .project-card:nth-child(5) {
  grid-column: 3 !important;
  grid-row: 2 !important;
}

/* заголовок */
.projects-mobile-kicker {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 24px 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 510 !important;
  font-size: 12px !important;
  line-height: 20.8px !important;
  letter-spacing: 1.82px !important;
  text-transform: uppercase !important;
  color: #4076FF !important;
}

.projects-mobile-kicker::before {
  content: "" !important;
  width: 30px !important;
  height: 1.5px !important;
  background: #4076FF !important;
  border-radius: 20px !important;
  display: block !important;
}

.projects-mobile-title {
  width: 340px !important;
  margin: 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 590 !important;
  font-size: 64px !important;
  line-height: 71.81px !important;
  letter-spacing: -2.11px !important;
  color: #1C1C1E !important;
}

/* картки */
.projects-page-grid .project-card {
  width: 395px !important;
  height: 429px !important;
  min-height: 429px !important;

  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #DDE3EC !important;
  border-radius: 24px !important;

  color: #1C1C1E !important;
  text-decoration: none !important;
}

.projects-page-grid .project-image-wrap {
  width: 392px !important;
  height: 269.17px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-bottom: 1px solid #DDE3EC !important;
}

.projects-page-grid .project-image {
  width: 392px !important;
  height: 269.17px !important;
  object-fit: cover !important;
}

.projects-page-grid .project-body {
  padding: 22px 24px 20px !important;
}

.projects-page-grid .project-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 14px !important;
}

.projects-page-grid .project-title {
  width: 255px !important;
  margin: 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 510 !important;
  font-size: 24px !important;
  line-height: 29.12px !important;
  letter-spacing: -0.56px !important;
  color: #1C1C1E !important;
}

.projects-page-grid .round-arrow,
.projects-page-grid .project-arrow {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;

  border: 1px solid #DDE3EC !important;
  border-radius: 50% !important;
  background: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.projects-page-grid .project-meta {
  display: grid !important;
  grid-template-columns: 54px 54px 86px 1fr !important;
  column-gap: 18px !important;
  align-items: start !important;
}

.projects-page-grid .project-meta span {
  display: block !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12.7px !important;
  line-height: 23.04px !important;
  color: #1C1C1E !important;
}

.projects-page-grid .project-meta strong {
  display: block !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14.8px !important;
  line-height: 26.11px !important;
  color: #184EC5 !important;
  white-space: nowrap !important;
}

/* tablet */
@media (max-width: 1300px) {
  .projects-page-container {
    width: calc(100% - 80px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .projects-page-grid .project-card,
  .projects-page-grid .project-image-wrap,
  .projects-page-grid .project-image {
    width: 100% !important;
  }
}

/* mobile */
@media (max-width: 575px) {
  .projects-page-section {
    padding: 36px 0 52px !important;
  }

  .projects-page-container {
    width: calc(100% - 30px) !important;
    max-width: 362px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .projects-mobile-head {
    width: 100% !important;
    margin: 0 0 24px 0 !important;
  }

  .projects-mobile-title {
    width: 100% !important;
    font-size: 27.5px !important;
    line-height: 32.2px !important;
    letter-spacing: -0.7px !important;
  }

  .projects-page-grid {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .projects-page-grid .project-card:nth-child(1),
  .projects-page-grid .project-card:nth-child(2),
  .projects-page-grid .project-card:nth-child(3),
  .projects-page-grid .project-card:nth-child(4),
  .projects-page-grid .project-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .projects-page-grid .project-card {
    width: 100% !important;
    height: auto !important;
    min-height: 342.5px !important;
    border-radius: 16px !important;
  }

  .projects-page-grid .project-image-wrap {
    width: 100% !important;
    height: 217.5px !important;
    margin: 0 !important;
  }

  .projects-page-grid .project-image {
    width: 100% !important;
    height: 217.5px !important;
  }

  .projects-page-grid .project-body {
    padding: 16px 18px 18px !important;
  }

  .projects-page-grid .project-title {
    width: calc(100% - 58px) !important;
    font-size: 18px !important;
    line-height: 22.5px !important;
    letter-spacing: -0.45px !important;
  }

  .projects-page-grid .project-meta {
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 6px !important;
  }

  .projects-page-grid .project-meta span {
    font-family: "Inter", "Onest", sans-serif !important;
    font-size: 11px !important;
    line-height: 15.13px !important;
  }

  .projects-page-grid .project-meta strong {
    font-size: 13px !important;
    line-height: 17.88px !important;
    white-space: normal !important;
  }
}
/* REALIZACE PAGE — FIX SECOND ROW ALIGNMENT */
.projects-page-container {
  align-items: start !important;
  grid-auto-rows: auto !important;
}

.projects-page-grid .project-card:nth-child(3) {
  grid-column: 1 !important;
  grid-row: 2 !important;
  margin-top: 0 !important;
}

/* =========================================================
   REALIZACE PAGE — PROJECTS LAYOUT CORRECT
   [ text ] [ card 1 ] [ card 2 ]
   [ card 3 ] [ card 4 ] [ card 5 ]
========================================================= */

.projects-page-section {
  width: 100% !important;
  background: #ffffff !important;
  padding: 119px 0 138px !important;
}

.projects-page-container {
  width: 1202px !important;
  max-width: 1202px !important;
  margin: 0 auto !important;

  display: grid !important;

  column-gap: 16px !important;
  row-gap: 16px !important;
  align-items: start !important;
}

/* text block — first column */
.projects-mobile-head {
  width: 340px !important;
  max-width: 340px !important;
  margin: 0 !important;

  grid-column: 1 !important;
  grid-row: 1 !important;
}

/* grid wrapper should not create its own centered grid */
.projects-page-grid {
  display: contents !important;
}

/* cards positions */
.projects-page-grid .project-card:nth-child(1) {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.projects-page-grid .project-card:nth-child(2) {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

.projects-page-grid .project-card:nth-child(3) {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

.projects-page-grid .project-card:nth-child(4) {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

.projects-page-grid .project-card:nth-child(5) {
  grid-column: 3 !important;
  grid-row: 2 !important;
}

/* text */
.projects-mobile-kicker {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 24px 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 510 !important;
  font-size: 12px !important;
  line-height: 20.8px !important;
  letter-spacing: 1.82px !important;
  text-transform: uppercase !important;
  color: #4076FF !important;
}

.projects-mobile-kicker::before {
  content: "" !important;
  display: block !important;
  width: 30px !important;
  height: 1.5px !important;
  background: #4076FF !important;
  border-radius: 20px !important;
  flex: 0 0 30px !important;
}

.projects-mobile-title {
  width: 340px !important;
  max-width: 340px !important;
  margin: 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 590 !important;
  font-size: 64px !important;
  line-height: 71.81px !important;
  letter-spacing: -2.11px !important;
  color: #1C1C1E !important;
}

/* cards */
.projects-page-grid .project-card {
  width: 395px !important;
  height: 429px !important;
  min-height: 429px !important;
  margin: 0 !important;

  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #DDE3EC !important;
  border-radius: 24px !important;

  color: #1C1C1E !important;
  text-decoration: none !important;
}

.projects-page-grid .project-image-wrap {
  position: relative !important;
  width: 392px !important;
  height: 269.17px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-bottom: 1px solid #DDE3EC !important;
}

.projects-page-grid .project-image {
  width: 392px !important;
  height: 269.17px !important;
  object-fit: cover !important;
}

.projects-page-grid .project-body {
  padding: 22px 24px 20px !important;
}

.projects-page-grid .project-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 14px !important;
}

.projects-page-grid .project-title {
  width: 255px !important;
  margin: 0 !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 510 !important;
  font-size: 24px !important;
  line-height: 29.12px !important;
  letter-spacing: -0.56px !important;
  color: #1C1C1E !important;
}

.projects-page-grid .round-arrow,
.projects-page-grid .project-arrow {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px !important;

  border: 1px solid #DDE3EC !important;
  border-radius: 50% !important;
  background: #ffffff !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.projects-page-grid .project-meta {
  display: grid !important;
  grid-template-columns: 54px 54px 86px 1fr !important;
  column-gap: 18px !important;
  align-items: start !important;
}

.projects-page-grid .project-meta span {
  display: block !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12.7px !important;
  line-height: 23.04px !important;
  color: #1C1C1E !important;
}

.projects-page-grid .project-meta strong {
  display: block !important;

  font-family: "SF Pro", "SF Pro Display", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14.8px !important;
  line-height: 26.11px !important;
  color: #184EC5 !important;
  white-space: nowrap !important;
}

/* tablet */
@media (max-width: 1300px) {
  .projects-page-container {
    width: calc(100% - 80px) !important;
    max-width: calc(100% - 80px) !important;
    grid-template-columns: 320px 1fr 1fr !important;
  }

  .projects-mobile-head {
    width: 320px !important;
    max-width: 320px !important;
  }

  .projects-mobile-title {
    width: 320px !important;
    max-width: 320px !important;
  }

  .projects-page-grid .project-card,
  .projects-page-grid .project-image-wrap,
  .projects-page-grid .project-image {
    width: 100% !important;
  }
}

/* mobile */
@media (max-width: 575px) {
  .projects-page-section {
    padding: 36px 0 52px !important;
  }

  .projects-page-container {
    width: calc(100% - 30px) !important;
    max-width: 362px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .projects-mobile-head {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 24px 0 !important;
  }

  .projects-mobile-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 27.5px !important;
    line-height: 32.2px !important;
    letter-spacing: -0.7px !important;
  }

  .projects-page-grid {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .projects-page-grid .project-card:nth-child(1),
  .projects-page-grid .project-card:nth-child(2),
  .projects-page-grid .project-card:nth-child(3),
  .projects-page-grid .project-card:nth-child(4),
  .projects-page-grid .project-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .projects-page-grid .project-card {
    width: 100% !important;
    height: auto !important;
    min-height: 342.5px !important;
    border-radius: 16px !important;
  }

  .projects-page-grid .project-image-wrap {
    width: 100% !important;
    height: 217.5px !important;
    margin: 0 !important;
  }

  .projects-page-grid .project-image {
    width: 100% !important;
    height: 217.5px !important;
  }

  .projects-page-grid .project-body {
    padding: 16px 18px 18px !important;
  }

  .projects-page-grid .project-title {
    width: calc(100% - 58px) !important;
    font-size: 18px !important;
    line-height: 22.5px !important;
    letter-spacing: -0.45px !important;
  }

  .projects-page-grid .project-meta {
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 6px !important;
  }

  .projects-page-grid .project-meta span {
    font-family: "Inter", "Onest", sans-serif !important;
    font-size: 11px !important;
    line-height: 15.13px !important;
  }

  .projects-page-grid .project-meta strong {
    font-size: 13px !important;
    line-height: 17.88px !important;
    white-space: normal !important;
  }
}

/* =========================================================
   HOME PROJECTS SECTION — FINAL
   Layout:
   [ text ] [ card 1 ] [ card 2 ]
   [ card 3 ] [ card 4 ] [ card 5 ]
========================================================= */

.home-projects-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.home-projects-container {
  width: 1202px;
  margin: 0 auto;
}

.home-projects-grid {
  width: 1202px;
  display: grid;
  grid-template-columns: repeat(3, 395px);
  gap: 16px;
  align-items: start;
}

/* TEXT BLOCK */

.home-projects-intro {
  width: 340px;
  grid-column: 1;
  grid-row: 1;
}

.home-projects-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  color: var(--MainBlueColor);
}

.home-projects-kicker::before {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--MainBlueColor);
  border-radius: 20px;
  flex: 0 0 30px;
}

.home-projects-title {
  width: 340px;
  margin: 0 0 18px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 510;
  font-size: 64px;
  line-height: 71.81px;
  letter-spacing: -2.11px;
  color: var(--Black);
}

.home-projects-desc {
  width: 340px;
  margin: 0 0 28px 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--TextGray);
}

.home-projects-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;

  color: var(--MainBlueColor);
  text-decoration: none;
}

.home-projects-link-mobile {
  display: none;
}

/* CARD POSITIONS */

.home-project-card:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
}

.home-project-card:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
}

.home-project-card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.home-project-card:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.home-project-card:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

/* CARD */

.home-project-card {
  width: 395px;
  height: 429px;
  min-height: 429px;

  display: block;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;

  color: var(--Black);
  text-decoration: none;
}

.home-project-card:hover {
  color: var(--Black);
  text-decoration: none;
}

.home-project-image-wrap {
  position: relative;
  width: 392px;
  height: 269.17px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--Line);
}

.home-project-image {
  width: 392px;
  height: 269.17px;
  object-fit: cover;
}

.home-project-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-project-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-project-body {
  padding: 22px 24px 20px;
}

.home-project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-project-title {
  width: 255px;
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.12px;
  letter-spacing: -0.56px;
  color: var(--Black);
}

.home-project-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  border: 1px solid var(--Line);
  border-radius: 50%;
  background: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-project-arrow span {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.home-project-meta {
  display: grid;
  grid-template-columns: 54px 54px 86px 1fr;
  column-gap: 18px;
  align-items: start;
}

.home-project-meta div {
  min-width: 0;
}

.home-project-meta span {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 12.7px;
  line-height: 23.04px;
  color: var(--Black);
}

.home-project-meta strong {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 14.8px;
  line-height: 26.11px;
  color: var(--MainBlueColor);
  white-space: nowrap;
}

/* TABLET */

@media (max-width: 1300px) {
  .home-projects-container,
  .home-projects-grid {
    width: calc(100% - 80px);
  }

  .home-projects-grid {
    grid-template-columns: 320px 1fr 1fr;
  }

  .home-projects-intro,
  .home-projects-title,
  .home-projects-desc {
    width: 320px;
  }

  .home-project-card {
    width: 100%;
  }

  .home-project-image-wrap,
  .home-project-image {
    width: 100%;
  }
}

/* TABLET SMALL */

@media (max-width: 991px) {
  .home-projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-projects-intro {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .home-projects-title,
  .home-projects-desc {
    width: 100%;
  }

  .home-project-card:nth-of-type(1),
  .home-project-card:nth-of-type(2),
  .home-project-card:nth-of-type(3),
  .home-project-card:nth-of-type(4),
  .home-project-card:nth-of-type(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* MOBILE */

@media (max-width: 575px) {
  .home-projects-section {
    padding: 36px 0 52px;
  }

  .home-projects-container,
  .home-projects-grid {
    width: calc(100% - 30px);
    max-width: 362px;
    margin: 0 auto;
  }

  .home-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-projects-intro,
  .home-projects-title,
  .home-projects-desc {
    width: 100%;
  }

  .home-projects-title {
    margin: 0 0 14px 0;
    font-size: 27.5px;
    line-height: 32.2px;
    letter-spacing: -0.7px;
  }

  .home-projects-desc,
  .home-projects-intro .home-projects-link {
    display: none;
  }

  .home-project-card {
    width: 100%;
    height: auto;
    min-height: 342.5px;
    border-radius: 16px;
  }

  .home-project-image-wrap,
  .home-project-image {
    width: 100%;
    height: 217.5px;
  }

  .home-project-image-wrap {
    margin: 0;
  }

  .home-project-body {
    padding: 16px 18px 18px;
  }

  .home-project-title {
    width: calc(100% - 58px);
    font-size: 18px;
    line-height: 22.5px;
    letter-spacing: -0.45px;
  }

  .home-project-meta {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6px;
  }

  .home-project-meta span {
    font-family: "Inter", "Onest", sans-serif;
    font-size: 11px;
    line-height: 15.13px;
  }

  .home-project-meta strong {
    font-size: 13px;
    line-height: 17.88px;
    white-space: normal;
  }

  .home-projects-link-mobile {
    display: inline-flex;
    margin-top: 24px;
  }
}
/* =========================================================
   HOME PROJECTS SECTION — FINAL DESIGN
   [ text ] [ card 1 ] [ card 2 ]
   [ card 3 ] [ card 4 ] [ card 5 ]
========================================================= */

.home-projects-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.home-projects-container {
  width: 1202px;
  margin: 0 auto;
}

.home-projects-grid {
  width: 1202px;
  display: grid;
  grid-template-columns: repeat(3, 384.666px);
  gap: 16px;
  align-items: start;
}

/* text block */

.home-projects-intro {
  width: 340px;
  grid-column: 1;
  grid-row: 1;
}

.home-projects-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  color: var(--MainBlueColor);
}

.home-projects-kicker::before {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--MainBlueColor);
  border-radius: 20px;
  flex: 0 0 30px;
}

.home-projects-title {
  width: 340px;
  margin: 0 0 18px 0;

  font-family: "SF Pro", sans-serif;
  font-weight: 510;
  font-size: 64px;
  line-height: 71.81px;
  letter-spacing: -2.11px;
  color: var(--Black);
}

.home-projects-desc {
  width: 340px;
  margin: 0 0 28px 0;

  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--TextGray);
}

.home-projects-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20.8px;
  letter-spacing: 1.82px;
  text-transform: uppercase;

  color: var(--MainBlueColor);
  text-decoration: none;
}

.home-projects-link-mobile {
  display: none;
}

/* positions */

.home-project-card:nth-of-type(1) {
  grid-column: 2;
  grid-row: 1;
}

.home-project-card:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
}

.home-project-card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.home-project-card:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.home-project-card:nth-of-type(5) {
  grid-column: 3;
  grid-row: 2;
}

/* card */

.home-project-card {
  width: 384.666px;
  height: 429px;
  min-height: 429px;

  display: block;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;

  color: var(--Black);
  text-decoration: none;
}

.home-project-card:hover {
  color: var(--Black);
  text-decoration: none;
}

.home-project-image-wrap {
  position: relative;
  width: 100%;
  height: 269.17px;
  overflow: hidden;
  border-bottom: 1px solid var(--Line);
}

.home-project-image {
  width: 100%;
  height: 269.17px;
  object-fit: cover;
}

.home-project-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-project-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-project-body {
  padding: 22px 24px 20px;
}

.home-project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.home-project-title {
  width: 255px;
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.12px;
  letter-spacing: -0.56px;
  color: var(--Black);
}

.home-project-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  border: 1px solid var(--Line);
  border-radius: 50%;
  background: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-project-arrow span {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.home-project-meta {
  display: grid;
  grid-template-columns: 54px 54px 86px 1fr;
  column-gap: 18px;
  align-items: start;
}

.home-project-meta div {
  min-width: 0;
}

.home-project-meta span {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 12.7px;
  line-height: 23.04px;
  color: var(--Black);
}

.home-project-meta strong {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 14.8px;
  line-height: 26.11px;
  color: var(--MainBlueColor);
  white-space: nowrap;
}

/* tablet */

@media (max-width: 1300px) {
  .home-projects-container,
  .home-projects-grid {
    width: calc(100% - 80px);
  }

  .home-projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-project-card {
    width: 100%;
  }
}

/* tablet small */

@media (max-width: 991px) {
  .home-projects-grid {
    grid-template-columns: repeat(, minmax(0, 1fr));
  }

  .home-projects-intro {
    width: 100%;
    grid-column: 1 / -1;
    grid-row: auto;
    margin-bottom: 16px;
  }

  .home-projects-title,
  .home-projects-desc {
    width: 100%;
  }

  .home-project-card:nth-of-type(1),
  .home-project-card:nth-of-type(2),
  .home-project-card:nth-of-type(3),
  .home-project-card:nth-of-type(4),
  .home-project-card:nth-of-type(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* mobile */

@media (max-width: 575px) {
  .home-projects-section {
    padding: 36px 0 52px;
  }

  .home-projects-container,
  .home-projects-grid {
    width: calc(100% - 30px);
    max-width: 362px;
    margin: 0 auto;
  }

  .home-projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-projects-intro,
  .home-projects-title,
  .home-projects-desc {
    width: 100%;
  }

  .home-projects-title {
    margin: 0 0 14px 0;
    font-size: 27.5px;
    line-height: 32.2px;
    letter-spacing: -0.7px;
  }

  .home-projects-desc,
  .home-projects-intro .home-projects-link {
    display: none;
  }

  .home-project-card {
    width: 100%;
    height: auto;
    min-height: 342.5px;
    border-radius: 16px;
  }

  .home-project-image-wrap,
  .home-project-image {
    height: 217.5px;
  }

  .home-project-body {
    padding: 16px 18px 18px;
  }

  .home-project-title {
    width: calc(100% - 58px);
    font-size: 18px;
    line-height: 22.5px;
    letter-spacing: -0.45px;
  }

  .home-project-meta {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 6px;
  }

  .home-project-meta span {
    font-family: "Inter", "Onest", sans-serif;
    font-size: 11px;
    line-height: 15.13px;
  }

  .home-project-meta strong {
    font-size: 13px;
    line-height: 17.88px;
    white-space: normal;
  }

  .home-projects-link-mobile {
    display: inline-flex;
    margin-top: 24px;
  }
}


/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {
  width: 100%;
  background: #ffffff;
  padding: 119px 0;
}

.projects-container {
  width: 1202px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 340px 806px;
  column-gap: 56px;
  align-items: start;
}

.projects-intro {
  width: 340px;
}

.projects-title {
  margin: 0 0 18px 0;
}

.projects-grid {
  width: 806px;

  display: grid;
  grid-template-columns: repeat(3, 395px);
  gap: 16px;
}

.project-card {
  width: 395px;
  height: 429px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--Line);
  border-radius: 24px;
  color: var(--Black);
}

.project-image-wrap {
  position: relative;
  width: 392px;
  height: 269.17px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--Line);
}

.project-image {
  width: 392px;
  height: 269.17px;
  object-fit: cover;
}

.project-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-body {
  padding: 22px 24px 20px;
}

.project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.project-title {
  width: 255px;
  margin: 0;

  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.12px;
  letter-spacing: -0.56px;
  color: var(--Black);
}

.project-meta {
  display: grid;
  grid-template-columns: 54px 54px 86px 1fr;
  column-gap: 18px;
  align-items: start;
}

.project-meta div {
  min-width: 0;
}

.project-meta span {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 12.7px;
  line-height: 23.04px;
  color: var(--Black);
}

.project-meta strong {
  display: block;

  font-family: "SF Pro", sans-serif;
  font-weight: 500;
  font-size: 14.8px;
  line-height: 26.11px;
  color: var(--MainBlueColor);
  white-space: nowrap;
}

/* =========================================================
   HOME PROJECTS — HARD INLINE FIX
========================================================= */

.home-projects-section {
  width: 100% !important;
  background: #ffffff !important;
  padding: 96px 0 120px !important;
}

.home-projects-container {
  width: 1202px !important;
  margin: 0 auto !important;
}

.home-projects-grid {
  width: 1202px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

/* text block */
.home-projects-intro {
  width: 340px !important;
  min-height: 429px !important;
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0 !important;
  padding: 4px 0 0 0 !important;
}

/* cards */
.home-project-card {
  width: 100% !important;
  height: 429px !important;
  min-height: 429px !important;
  display: block !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid #DDE3EC !important;
  border-radius: 24px !important;
  color: #1C1C1E !important;
  text-decoration: none !important;
}

.home-project-image-wrap {
  position: relative !important;
  width: 100% !important;
  height: 269px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-bottom: 1px solid #DDE3EC !important;
}

.home-project-image {
  width: 100% !important;
  height: 269px !important;
  object-fit: cover !important;
}

.home-project-icon {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  z-index: 2 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-project-body {
  padding: 16px 18px 18px !important;
}

.home-project-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.home-project-title {
  margin: 0 !important;
  width: calc(100% - 56px) !important;
  font-family: "Onest", sans-serif !important;
  font-weight: 500 !important;
  font-size: 21px !important;
  line-height: 25px !important;
  letter-spacing: -0.4px !important;
  color: #1C1C1E !important;
}

.home-project-arrow {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  border: 1px solid #DDE3EC !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-project-meta {
  display: grid !important;
  grid-template-columns: 54px 54px 86px 1fr !important;
  column-gap: 18px !important;
  align-items: start !important;
}

.home-project-meta span {
  display: block !important;
  font-family: "SF Pro", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 20px !important;
  color: #1C1C1E !important;
}

.home-project-meta strong {
  display: block !important;
  font-family: "SF Pro", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  color: #184EC5 !important;
  white-space: nowrap !important;
}

/* intro typography */
.home-projects-kicker {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 18px 0 !important;
  font-family: "Onest", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 20px !important;
  letter-spacing: 1.82px !important;
  text-transform: uppercase !important;
  color: #184EC5 !important;
}

.home-projects-kicker::before {
  content: "" !important;
  width: 30px !important;
  height: 1.5px !important;
  background: #184EC5 !important;
  border-radius: 20px !important;
  display: block !important;
}

.home-projects-title {
  margin: 0 0 18px 0 !important;
  width: 340px !important;
  font-family: "SF Pro", sans-serif !important;
  font-weight: 510 !important;
  font-size: 64px !important;
  line-height: 71.81px !important;
  letter-spacing: -2.11px !important;
  color: #1C1C1E !important;
}

.home-projects-desc {
  width: 340px !important;
  margin: 0 0 26px 0 !important;
  font-family: "Onest", sans-serif !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: #6B7280 !important;
}

.home-projects-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: "Onest", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 20.8px !important;
  letter-spacing: 1.82px !important;
  text-transform: uppercase !important;
  color: #184EC5 !important;
  text-decoration: none !important;
}

.home-projects-link-mobile {
  display: none !important;
}

/* mobile */
@media (max-width: 991px) {
  .home-projects-container,
  .home-projects-grid {
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
  }

  .home-projects-grid {
    grid-template-columns: 1fr !important;
  }

  .home-projects-intro {
    width: 100% !important;
    min-height: auto !important;
  }

  .home-projects-title,
  .home-projects-desc {
    width: 100% !important;
  }

  .home-project-card {
    height: auto !important;
    min-height: 342px !important;
  }

  .home-project-image-wrap,
  .home-project-image {
    height: 217px !important;
  }

  .home-projects-desc,
  .home-projects-intro .home-projects-link {
    display: none !important;
  }

  .home-projects-link-mobile {
    display: inline-flex !important;
    margin-top: 24px !important;
  }
}

/* =========================================================
   REALIZACE — MOBILE LIKE SCREEN
   paste at the VERY END of css file
========================================================= */

@media (max-width: 575px) {

  html,
  body {
    background: #F5F7FB !important;
  }

  .projects-page-section {
    width: 100% !important;
    background: #F5F7FB !important;
    padding: 32px 0 42px !important;
  }

  .projects-page-container {
    width: calc(100% - 30px) !important;
    max-width: 362px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .projects-mobile-head {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
  }

  .projects-mobile-kicker {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 8px 0 !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 510 !important;
    font-size: 8px !important;
    line-height: 12px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #4076FF !important;
  }

  .projects-mobile-kicker::before {
    content: "" !important;
    display: block !important;
    width: 21px !important;
    height: 1px !important;
    background: #4076FF !important;
    border-radius: 20px !important;
    flex: 0 0 21px !important;
  }

  .projects-mobile-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 590 !important;
    font-size: 20px !important;
    line-height: 24px !important;
    letter-spacing: -0.45px !important;
    color: #1C1C1E !important;
  }

  .projects-page-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .projects-page-grid .project-card,
  .projects-page-grid .project-card:nth-child(1),
  .projects-page-grid .project-card:nth-child(2),
  .projects-page-grid .project-card:nth-child(3),
  .projects-page-grid .project-card:nth-child(4),
  .projects-page-grid .project-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    display: block !important;
    overflow: hidden !important;

    background: #ffffff !important;
    border: 1px solid #E3E8F1 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;

    color: #1C1C1E !important;
    text-decoration: none !important;
  }

  .projects-page-grid .project-image-wrap {
    position: relative !important;
    width: 100% !important;
    height: 176px !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-bottom: 1px solid #E3E8F1 !important;
    background: #EEF2F7 !important;
  }

  .projects-page-grid .project-image {
    width: 100% !important;
    height: 176px !important;
    object-fit: cover !important;
  }

  .projects-page-grid .project-icon {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 2 !important;

    width: 28px !important;
    height: 28px !important;

    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.10) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .projects-page-grid .project-icon img {
    max-width: 16px !important;
    max-height: 16px !important;
    object-fit: contain !important;
  }

  .projects-page-grid .project-body {
    padding: 12px 14px 14px !important;
  }

  .projects-page-grid .project-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin: 0 0 10px 0 !important;
  }

  .projects-page-grid .project-title {
    width: calc(100% - 38px) !important;
    margin: 0 !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 510 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    letter-spacing: -0.2px !important;
    color: #1C1C1E !important;
  }

  .projects-page-grid .project-arrow,
  .projects-page-grid .round-arrow {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;

    border: 1px solid #E3E8F1 !important;
    border-radius: 50% !important;
    background: #ffffff !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .projects-page-grid .project-arrow span,
  .projects-page-grid .round-arrow span {
    font-size: 12px !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
  }

  .projects-page-grid .project-meta {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    column-gap: 7px !important;
    align-items: start !important;
  }

  .projects-page-grid .project-meta div {
    min-width: 0 !important;
  }

  .projects-page-grid .project-meta span {
    display: block !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 400 !important;
    font-size: 8px !important;
    line-height: 11px !important;
    color: #1C1C1E !important;
  }

  .projects-page-grid .project-meta strong {
    display: block !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 510 !important;
    font-size: 8.5px !important;
    line-height: 12px !important;
    color: #4076FF !important;
    white-space: normal !important;
  }

  .projects-page-link,
  .projects-link-mobile,
  .projects-page-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 18px !important;

    font-family: "SF Pro", "Onest", sans-serif !important;
    font-weight: 510 !important;
    font-size: 9px !important;
    line-height: 14px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #4076FF !important;
    text-decoration: none !important;
  }
}

/* =========================================================
   HOME PROJECTS — MOBILE FINAL
========================================================= */

@media (max-width: 575px) {
  .projects-section {
    width: 100%;
    padding: 36px 0 52px !important;
    background: #ffffff;
    overflow: hidden;
  }

  .projects-container {
    width: calc(100% - 30px) !important;
    max-width: 362px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .projects-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .projects-intro {
    width: 100% !important;
    min-height: auto !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
  }

  .projects-kicker {
    margin: 0 0 14px 0 !important;
    font-size: 11px !important;
    line-height: 16.5px !important;
    letter-spacing: 1.82px !important;
  }

  .projects-title {
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    font-size: 27.5px !important;
    line-height: 32.2px !important;
    letter-spacing: -0.7px !important;
  }

  .projects-desc {
    display: none !important;
  }

  .projects-link-desktop,
  .projects-intro .projects-link {
    display: none !important;
  }

  .projects-link-mobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 350px !important;
    min-height: 39px !important;
    margin: 24px auto 0 !important;

    font-family: "SF Pro", "SF Pro Display", sans-serif !important;
    font-weight: 510 !important;
    font-size: 13px !important;
    line-height: 19.5px !important;
    letter-spacing: 1.68px !important;
    text-transform: uppercase !important;
    color: var(--MainBlueColor, #184EC5) !important;
    text-decoration: none !important;
  }

  .projects-grid .project-card {
    width: 100% !important;
    height: auto !important;
    min-height: 342.5px !important;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  .projects-grid .project-image-wrap {
    width: 100% !important;
    height: 217.5px !important;
    margin: 0 !important;
  }

  .projects-grid .project-image {
    width: 100% !important;
    height: 217.5px !important;
    object-fit: cover !important;
  }

  .projects-grid .project-icon {
    top: 16px !important;
    left: 16px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .projects-grid .project-body {
    padding: 16px 18px 18px !important;
  }

  .projects-grid .project-head {
    margin-bottom: 12px !important;
  }

  .projects-grid .project-title {
    width: calc(100% - 58px) !important;
    font-size: 18px !important;
    line-height: 22.5px !important;
    letter-spacing: -0.45px !important;
  }

  .projects-grid .project-meta {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 6px !important;
  }

  .projects-grid .project-meta span {
    font-family: "Inter", "Onest", sans-serif !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    line-height: 15.13px !important;
  }

  .projects-grid .project-meta strong {
    font-weight: 510 !important;
    font-size: 13px !important;
    line-height: 17.88px !important;
    white-space: normal !important;
  }
}

/* =========================================================
   HOME PROJECTS — MOBILE FINAL
========================================================= */

@media (max-width: 575px) {
  .projects-section {
    width: 100%;
    padding: 36px 0 52px !important;
    background: #ffffff;
    overflow: hidden;
  }

  .projects-container {
    width: calc(100% - 30px) !important;
    max-width: 362px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .projects-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .projects-intro {
    width: 100% !important;
    min-height: auto !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
  }

  .projects-kicker {
    margin: 0 0 14px 0 !important;
    font-size: 11px !important;
    line-height: 16.5px !important;
    letter-spacing: 1.82px !important;
  }

  .projects-title {
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    font-size: 27.5px !important;
    line-height: 32.2px !important;
    letter-spacing: -0.7px !important;
  }

  .projects-desc {
    display: none !important;
  }

  .projects-link-desktop,
  .projects-intro .projects-link {
    display: none !important;
  }

  .projects-link-mobile {
  
    width: 260px !important;
    min-height: 39px !important;
    margin: 24px auto 0 !important;

    font-family: "SF Pro", "SF Pro Display", sans-serif !important;
    font-weight: 510 !important;
    font-size: 13px !important;
    line-height: 19.5px !important;
    letter-spacing: 1.68px !important;
    text-transform: uppercase !important;
    color: var(--MainBlueColor, #184EC5) !important;
    text-decoration: none !important;
  }

  .projects-grid .project-card {
    width: 100% !important;
    height: auto !important;
    min-height: 342.5px !important;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  .projects-grid .project-image-wrap {
    width: 100% !important;
    height: 217.5px !important;
    margin: 0 !important;
  }

  .projects-grid .project-image {
    width: 100% !important;
    height: 217.5px !important;
    object-fit: cover !important;
  }

  .projects-grid .project-icon {
    top: 16px !important;
    left: 16px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .projects-grid .project-body {
    padding: 16px 18px 18px !important;
  }

  .projects-grid .project-head {
    margin-bottom: 12px !important;
  }

  .projects-grid .project-title {
    width: calc(100% - 58px) !important;
    font-size: 18px !important;
    line-height: 22.5px !important;
    letter-spacing: -0.45px !important;
  }

  .projects-grid .project-meta {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    column-gap: 6px !important;
  }

  .projects-grid .project-meta span {
    font-family: "Inter", "Onest", sans-serif !important;
    font-weight: 400 !important;
    font-size: 11px !important;
    line-height: 15.13px !important;
  }

  .projects-grid .project-meta strong {
    font-weight: 510 !important;
    font-size: 13px !important;
    line-height: 17.88px !important;
    white-space: normal !important;
  }
}

/* =========================================================
   HERO FULL SCREEN — FINAL OVERRIDE
   Hero на весь екран будь-якого пристрою
   Desktop / Tablet / Mobile
========================================================= */

.hero-section {
  position: relative !important;
  width: 100% !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  height: 100vh !important;
  height: 100svh !important;
  margin: 0 !important;
  overflow: hidden !important;

  background-image: var(--hero-main-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #1c222b !important;
}

.hero-layout {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  height: 100vh !important;
  height: 100svh !important;
  margin: 0 !important;
}

.hero-container {
  position: relative !important;
  top: 115px !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;

  width: 1202px !important;
  max-width: calc(100% - 80px) !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  height: 100vh !important;
  height: 100svh !important;
  margin: 0 auto !important;
  z-index: 5 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;

  padding-top: clamp(130px, 22vh, 184px) !important;
  padding-bottom: clamp(64px, 13vh, 114px) !important;
}

.hero-top {
  flex: 0 0 auto !important;
}

.hero-bottom {
  flex: 0 0 auto !important;
}

/* tablet */
@media (max-width: 991px) {
  .hero-section,
  .hero-layout {
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
  }

  .hero-container {
    position: relative !important;
  top: 115px !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;

    width: calc(100% - 48px) !important;
    max-width: none !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;

    padding-top: clamp(120px, 20vh, 160px) !important;
    padding-bottom: clamp(48px, 10vh, 80px) !important;
  }
}

/* mobile */
@media (max-width: 575px) {
  .hero-section,
  .hero-layout {
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
  }

  .hero-section {
    background-position: center center !important;
  }

  .hero-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 8, 18, 0.24) 0%,
        rgba(3, 8, 18, 0.34) 24%,
        rgba(3, 8, 18, 0.58) 64%,
        rgba(3, 8, 18, 0.75) 100%
      ) !important;
  }

  .hero-container {
    position: relative !important;
  top: 115px !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;

    width: calc(100% - 40px) !important;
    max-width: 340px !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;

    padding-top: clamp(105px, 18vh, 129px) !important;
    padding-bottom: 40px !important;
  }

  .hero-bottom {
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .hero-title {
    margin-bottom: 24px !important;
  }

  .hero-desc-mobile {
    margin-bottom: 28px !important;
  }
}

/* =========================================================
   HERO — MOVE CONTENT SLIGHTLY UP
========================================================= */

/* =========================================================
   HERO — FINAL COMPACT POSITION
========================================================= */

.hero-container {
  position: relative !important;
  top: 115px !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;

  width: 1202px !important;
  max-width: calc(100% - 80px) !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  height: auto !important;
  margin: 0 auto !important;

  display: block !important;

  padding-top: 145px !important;
  padding-bottom: 0 !important;
}

.hero-top {
  margin: 0 0 34px 0 !important;
}

.hero-title {
  margin: 0 !important;
}

.hero-bottom {
  display: flex !important;
  gap: 42px !important;
  width: 100% !important;
}

.hero-desc {
  margin: 0 !important;
  width: 580px !important;
  max-width: 580px !important;
}

.hero-buttons {
  margin-top: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  flex: 0 0 auto !important;
}


/* =========================================================
   HOME HERO — MOBILE VERTICAL CENTER FINAL
   Buttons are preserved exactly as existing mobile design
========================================================= */

@media (max-width: 575px) {
  .hero-section,
  .hero-layout {
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
  }

  .hero-section {
    background-position: center center !important;
  }

  .hero-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 8, 18, 0.24) 0%,
        rgba(3, 8, 18, 0.34) 24%,
        rgba(3, 8, 18, 0.58) 64%,
        rgba(3, 8, 18, 0.75) 100%
      ) !important;
  }

  .hero-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: calc(100% - 40px) !important;
    max-width: 340px !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    height: 100vh !important;
    height: 100svh !important;
    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

    padding: 0 !important;
  }

  .hero-top {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px 0 !important;
    transform: translateY(-18px) !important;
  }

  .hero-label {
    margin: 0 0 18px 0 !important;
  }

  .hero-title {
    width: 340px !important;
    max-width: 100% !important;
    margin: 0 !important;

    font-size: 44px !important;
    line-height: 46.2px !important;
    letter-spacing: -2px !important;
  }

  .hero-bottom {
    display: block !important;
    width: 100% !important;
    transform: translateY(-18px) !important;
  }

  .hero-desc {
    display: none !important;
  }

  .hero-desc-mobile {
    display: block !important;
    width: 340px !important;
    max-width: 100% !important;
    margin: 0 0 28px 0 !important;

    font-size: 15px !important;
    line-height: 26.25px !important;
    color: #ffffff !important;
  }

  .hero-buttons {
    width: 171px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin: 0 !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 171px !important;
    height: 45px !important;
    padding: 12px 28px !important;
    gap: 10px !important;
    border-radius: 33554400px !important;

    font-family: "Onest", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 21px !important;
  }

  .hero-buttons .btn-primary {
    background: #4076FF !important;
    border-color: #4076FF !important;
  }

  .hero-buttons .btn-secondary {
    background: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
  }
}

/* =========================================================
   HOME PROJECT CARDS — META FIX FOR LONG VALUES
========================================================= */

.projects-grid .project-card,
.home-projects-grid .project-card {
  height: auto !important;
  min-height: 455px !important;
}

.projects-grid .project-body,
.home-projects-grid .project-body {
  padding: 20px 24px 22px !important;
}

.projects-grid .project-meta,
.home-projects-grid .project-meta {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 18px !important;
  row-gap: 10px !important;
  align-items: start !important;
}

.projects-grid .project-meta div,
.home-projects-grid .project-meta div {
  min-width: 0 !important;
}

.projects-grid .project-meta span,
.home-projects-grid .project-meta span {
  display: block !important;
  margin: 0 0 2px 0 !important;
  line-height: 16px !important;
}

.projects-grid .project-meta strong,
.home-projects-grid .project-meta strong {
  display: block !important;
  max-width: 100% !important;
  line-height: 19px !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 575px) {
  .projects-grid .project-card,
  .home-projects-grid .project-card {
    min-height: 390px !important;
  }

  .projects-grid .project-body,
  .home-projects-grid .project-body {
    padding: 16px 18px 18px !important;
  }

  .projects-grid .project-meta,
  .home-projects-grid .project-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 12px !important;
    row-gap: 9px !important;
  }

  .projects-grid .project-meta span,
  .home-projects-grid .project-meta span {
    font-size: 11px !important;
    line-height: 15px !important;
  }

  .projects-grid .project-meta strong,
  .home-projects-grid .project-meta strong {
    font-size: 13px !important;
    line-height: 17.88px !important;
  }
}

/* =========================================================
   NEO BUILDER — LIGHT ANIMATION LAYER
========================================================= */

:root {
  --neo-ease: cubic-bezier(.22, 1, .36, 1);
  --neo-time: 680ms;
}

.hero-label,
.hero-title,
.hero-desc,
.hero-desc-mobile,
.hero-buttons {
  animation: neoHeroFadeUp 760ms var(--neo-ease) both;
}

.hero-title {
  animation-delay: 80ms;
}

.hero-desc,
.hero-desc-mobile {
  animation-delay: 160ms;
}

.hero-buttons {
  animation-delay: 240ms;
}

@keyframes neoHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.project-card,
.trust-card,
.why-card,
.review-card,
.digital-code-box,
.contact-item {
  transition:
    transform 320ms var(--neo-ease),
    box-shadow 320ms var(--neo-ease),
    border-color 320ms var(--neo-ease);
}

.service-card:hover,
.project-card:hover,
.trust-card:hover,
.why-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 118, 255, .38);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .12);
}

.service-card-image,
.project-image,
.digital-right img {
  transition: transform 620ms var(--neo-ease), filter 620ms var(--neo-ease);
}

.service-card:hover .service-card-image,
.project-card:hover .project-image,
.digital-right:hover img {
  transform: scale(1.045);
}

.btn,
.services-link,
.projects-link,
.projects-link-mobile,
.services-link-mobile,
.reviews-link,
.contact-submit {
  transition:
    transform 260ms var(--neo-ease),
    box-shadow 260ms var(--neo-ease),
    background-color 260ms var(--neo-ease),
    border-color 260ms var(--neo-ease),
    color 260ms var(--neo-ease);
}

.btn:hover,
.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, .28);
}

.services-link:hover,
.projects-link:hover,
.projects-link-mobile:hover,
.services-link-mobile:hover,
.reviews-link:hover {
  transform: translateX(4px);
}

.service-card-arrow,
.project-arrow,
.round-arrow {
  transition:
    transform 260ms var(--neo-ease),
    background-color 260ms var(--neo-ease),
    border-color 260ms var(--neo-ease),
    color 260ms var(--neo-ease);
}

.service-card:hover .service-card-arrow,
.project-card:hover .project-arrow,
.project-card:hover .round-arrow {
  transform: translate(3px, -3px);
  background: #4076FF;
  border-color: #4076FF;
  color: #ffffff;
}

@supports (animation-timeline: view()) {
  .trust-left,
  .services-intro,
  .projects-intro,
  .why-intro,
  .reviews-head,
  .digital-left,
  .contact-left,
  .trust-card,
  .service-card,
  .project-card,
  .why-card,
  .review-card,
  .digital-right,
  .contact-item {
    animation-name: neoScrollUp;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

@keyframes neoScrollUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 575px) {
  .service-card:hover,
  .project-card:hover,
  .trust-card:hover,
  .why-card:hover,
  .review-card:hover {
    transform: none;
    box-shadow: none;
  }

  .service-card:hover .service-card-image,
  .project-card:hover .project-image {
    transform: none;
  }
}

/* =========================================================
   HOME PROJECT CARDS — FINAL DESKTOP FIX
========================================================= */

@media (min-width: 992px) {

  .projects-section .projects-grid .project-card {
    width: 395px !important;
    height: auto !important;
    min-height: 475px !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;
  }

  .projects-section .projects-grid .project-image-wrap {
    width: 100% !important;
    height: 269px !important;
    flex: 0 0 269px !important;
    margin: 0 !important;
  }

  .projects-section .projects-grid .project-image {
    width: 100% !important;
    height: 269px !important;
    object-fit: cover !important;
  }

  .projects-section .projects-grid .project-body {
    width: 100% !important;
    height: auto !important;
    flex: 1 1 auto !important;

    padding: 20px 22px 24px !important;
  }

  .projects-section .projects-grid .project-head {
    width: 100% !important;
    min-height: 58px !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;

    gap: 16px !important;
    margin: 0 0 18px !important;
  }

  .projects-section .projects-grid .project-title {
    width: calc(100% - 58px) !important;
    max-width: calc(100% - 58px) !important;

    margin: 0 !important;

    font-size: 22px !important;
    line-height: 26px !important;
    letter-spacing: -0.5px !important;

    overflow-wrap: anywhere !important;
  }

  .projects-section .projects-grid .project-arrow {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .projects-section .projects-grid .project-meta {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    column-gap: 28px !important;
    row-gap: 14px !important;

    align-items: start !important;
  }

  .projects-section .projects-grid .project-meta > div {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(4) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .projects-section .projects-grid .project-meta span {
    display: block !important;

    margin: 0 0 3px !important;

    font-size: 11px !important;
    line-height: 15px !important;
    font-weight: 500 !important;

    color: #1c1c1e !important;
    white-space: nowrap !important;
  }

  .projects-section .projects-grid .project-meta strong {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;

    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 500 !important;

    color: #4076ff !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* CONTACT SECTION — disable faded reveal state */
.contact-section .contact-left,
.contact-section .contact-list,
.contact-section .contact-item {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

/* =========================================================
   WHY SECTION — DESKTOP LINK + FINAL CARD SIZE
========================================================= */

.why-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;

  font-family: "SF Pro", "SF Pro Display", sans-serif;
  font-weight: 510;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 1.68px;
  text-transform: uppercase;

  color: #4076FF;
  text-decoration: none;
}

.why-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}

.why-link:hover span {
  transform: translateX(4px);
}

.why-card {
  width: 393px;
  height: 211px;
  border: 1px solid var(--Line);
  border-radius: 18px;
}

/* Mobile — Prozkoumat služby не показуємо */
@media (max-width: 575px) {
  .why-link {
    display: none !important;
  }

  .why-card {
    width: 100%;
    height: auto;
    min-height: 174px;
  }
}

/* =========================================================
   HOME HERO — FINAL MOBILE POSITION
========================================================= */

@media (max-width: 575px) {
  body .hero-section,
  body .hero-layout {
    position: relative !important;
    width: 100% !important;

    height: 100vh !important;
    height: 100svh !important;
    min-height: 640px !important;
  }

  body .hero-layout {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 20px !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  body .hero-container {
    position: static !important;

    width: 100% !important;
    max-width: 340px !important;
    min-height: 0 !important;
    height: auto !important;

    margin: 0 auto 115px !important;
    padding: 0 !important;

    display: block !important;
    transform: none !important;
  }

  body .hero-top,
  body .hero-bottom {
    transform: none !important;
  }

  body .hero-top {
    margin-bottom: 18px !important;
  }
} 

/* =========================================================
   REVIEWS — ADMIN CPT + MODAL
========================================================= */

.review-card {
  cursor: pointer;
}

.review-card:focus-visible {
  outline: 2px solid #4076FF;
  outline-offset: 4px;
}

.review-modal-open {
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, .62);
  backdrop-filter: blur(10px);
}

.review-modal-dialog {
  position: relative;
  z-index: 2;
  width: 640px;
  max-width: calc(100vw - 48px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px 42px 38px;
  border-radius: 24px;
  border: 1px solid #DDE3EC;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
}

.review-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #DDE3EC;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.review-modal-close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: #1C1C1E;
}

.review-modal-close span:first-child {
  transform: rotate(45deg);
}

.review-modal-close span:last-child {
  transform: rotate(-45deg);
}

.review-modal-quote {
  width: 32px;
  height: 32px;
  margin: 0 0 26px;
}

.review-modal-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-modal-text {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #1C1C1E;
}

.review-modal-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 28px;
  background: #DDE3EC;
}

.review-modal-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-modal-photo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-modal-author-info h3 {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1C1C1E;
}

.review-modal-author-info p {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #667085;
}

.review-modal-author-info span {
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #184EC5;
}

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

  .review-modal-dialog {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
    padding: 34px 22px 26px;
    border-radius: 18px;
  }

  .review-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .review-modal-close span {
    left: 10px;
    top: 18px;
  }

  .review-modal-text {
    font-size: 16px;
    line-height: 27px;
  }

  .review-modal-author {
    align-items: flex-start;
  }

  .review-modal-photo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

/* =========================================================
   REVIEWS — ADMIN CPT + MODAL
========================================================= */

.review-card {
  cursor: pointer;
}

.review-card:focus-visible {
  outline: 2px solid #4076FF;
  outline-offset: 4px;
}

.review-modal-open {
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, .62);
  backdrop-filter: blur(10px);
}

.review-modal-dialog {
  position: relative;
  z-index: 2;
  width: 640px;
  max-width: calc(100vw - 48px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px 42px 38px;
  border-radius: 24px;
  border: 1px solid #DDE3EC;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
}

.review-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #DDE3EC;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.review-modal-close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: #1C1C1E;
}

.review-modal-close span:first-child {
  transform: rotate(45deg);
}

.review-modal-close span:last-child {
  transform: rotate(-45deg);
}

.review-modal-quote {
  width: 32px;
  height: 32px;
  margin: 0 0 26px;
}

.review-modal-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-modal-text {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #1C1C1E;
}

.review-modal-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 28px;
  background: #DDE3EC;
}

.review-modal-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-modal-photo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-modal-author-info h3 {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1C1C1E;
}

.review-modal-author-info p {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #667085;
}

.review-modal-author-info span {
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #184EC5;
}

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

  .review-modal-dialog {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
    padding: 34px 22px 26px;
    border-radius: 18px;
  }

  .review-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .review-modal-close span {
    left: 10px;
    top: 18px;
  }

  .review-modal-text {
    font-size: 16px;
    line-height: 27px;
  }

  .review-modal-author {
    align-items: flex-start;
  }

  .review-modal-photo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}


.review-quote img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================
   REVIEWS — SEPARATOR LINE FINAL
========================================================= */

.review-line {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 18px 0 11px !important;
  padding: 0 !important;
  background: #DDE3EC !important;
  border: 0 !important;
  opacity: 1 !important;
}

.review-modal-line {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 34px 0 28px !important;
  padding: 0 !important;
  background: #DDE3EC !important;
  border: 0 !important;
  opacity: 1 !important;
}

@media (max-width: 575px) {
  .review-line,
  .review-modal-line {
    margin: 26px 0 22px !important;
  }
}

/* =========================================================
   REVIEWS — AUTHOR PHOTO + BOTTOM SPACING FIX
========================================================= */

.review-card {
  min-height: 352px;
  padding-bottom: 36px;
  overflow: visible;
}

.review-author {
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-photo,
.review-modal-photo {
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #F4F6F9;
}

.review-photo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
}

.review-author-info {
  min-width: 0;
  padding-bottom: 2px;
}

.review-author-info span {
  display: block;
  margin-top: 2px;
}

@media (max-width: 575px) {
  .review-card {
    min-height: 390px;
    padding-bottom: 34px;
  }

  .review-line {
    margin: 18px 0 18px !important;
  }

  .review-photo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

.review-text {
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  overflow: hidden;
}

/* =========================================================
   REVIEWS — ADMIN CPT + MODAL
========================================================= */

.review-card {
  cursor: pointer;
}

.review-card:focus-visible {
  outline: 2px solid #4076FF;
  outline-offset: 4px;
}

.review-modal-open {
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, .62);
  backdrop-filter: blur(10px);
}

.review-modal-dialog {
  position: relative;
  z-index: 2;
  width: 640px;
  max-width: calc(100vw - 48px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px 42px 38px;
  border-radius: 24px;
  border: 1px solid #DDE3EC;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
}

.review-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #DDE3EC;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.review-modal-close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: #1C1C1E;
}

.review-modal-close span:first-child {
  transform: rotate(45deg);
}

.review-modal-close span:last-child {
  transform: rotate(-45deg);
}

.review-modal-quote {
  width: 32px;
  height: 32px;
  margin: 0 0 26px;
}

.review-modal-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-modal-text {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #1C1C1E;
}

.review-modal-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 28px;
  background: #DDE3EC;
}

.review-modal-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-modal-photo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-modal-author-info h3 {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1C1C1E;
}

.review-modal-author-info p {
  margin: 0 0 4px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #667085;
}

.review-modal-author-info span {
  font-family: "Onest", "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #184EC5;
}

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

  .review-modal-dialog {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 32px);
    padding: 34px 22px 26px;
    border-radius: 18px;
  }

  .review-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .review-modal-close span {
    left: 10px;
    top: 18px;
  }

  .review-modal-text {
    font-size: 16px;
    line-height: 27px;
  }

  .review-modal-author {
    align-items: flex-start;
  }

  .review-modal-photo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}


.review-quote img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================
   REVIEWS — SEPARATOR LINE FINAL
========================================================= */

.review-line {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 34px 0 28px !important;
  padding: 0 !important;
  background: #DDE3EC !important;
  border: 0 !important;
  opacity: 1 !important;
}

.review-modal-line {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 34px 0 28px !important;
  padding: 0 !important;
  background: #DDE3EC !important;
  border: 0 !important;
  opacity: 1 !important;
}

@media (max-width: 575px) {
  .review-line,
  .review-modal-line {
    margin: 26px 0 22px !important;
  }
}

/* =========================================================
   REVIEWS — AUTHOR PHOTO + BOTTOM SPACING FIX
========================================================= */

.review-card {
  min-height: 352px;
  padding-bottom: 36px;
  overflow: visible;
}

.review-author {
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-photo,
.review-modal-photo {
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #F4F6F9;
}

.review-photo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
}

.review-author-info {
  min-width: 0;
  padding-bottom: 2px;
}

.review-author-info span {
  display: block;
  margin-top: 2px;
}

@media (max-width: 575px) {
  .review-card {
    min-height: 390px;
    padding-bottom: 34px;
  }

  .review-line {
    margin: 28px 0 28px !important;
  }

  .review-photo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

/* =========================================================
   REVIEWS — FIXED TEXT AREA / SAME VISUAL ROWS
========================================================= */

.reviews-grid {
  align-items: stretch !important;
}

.review-card {
  height: 352px !important;
  min-height: 352px !important;
  max-height: 352px !important;
  padding: 32px 30px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.review-quote {
  flex: 0 0 24px !important;
  height: 24px !important;
  margin: 0 0 24px 0 !important;
}

.review-text {
  flex: 0 0 150px !important;
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  margin: 0 !important;

  display: block !important;
  overflow: hidden !important;

  font-family: "Onest", "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 25px !important;
  color: #1C1C1E !important;
}

/* Fade at the bottom instead of changing the height */
.review-text {
  mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 86%, transparent 100%);
}

.review-line {
  flex: 0 0 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 22px 0 18px !important;
  background: #DDE3EC !important;
}

.review-author {
  flex: 0 0 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
}

.review-photo {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.review-author-info {
  min-width: 0 !important;
}

.review-author-info h3,
.review-author-info p,
.review-author-info span {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

@media (max-width: 991px) {
  .review-card {
    height: 382px !important;
    min-height: 382px !important;
    max-height: 382px !important;
  }

  .review-text {
    flex-basis: 156px !important;
    height: 156px !important;
    min-height: 156px !important;
    max-height: 156px !important;
    line-height: 26px !important;
  }
}

@media (max-width: 575px) {
  .review-card {
    height: 390px !important;
    min-height: 390px !important;
    max-height: 390px !important;
    padding: 28px 24px 28px !important;
  }

  .review-text {
    flex-basis: 156px !important;
    height: 156px !important;
    min-height: 156px !important;
    max-height: 156px !important;
    font-size: 15px !important;
    line-height: 26px !important;
  }

  .review-line {
    margin: 24px 0 20px !important;
  }
}

/* =========================================================
   REVIEWS — AUTHOR PHOTO VISIBLE FIX
========================================================= */

.review-author {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.review-photo,
.review-modal-photo {
  display: block !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #F4F6F9 !important;
}

.review-modal-photo {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  flex-basis: 64px !important;
}

@media (max-width: 575px) {
  .review-photo,
  .review-modal-photo {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    flex-basis: 52px !important;
  }
}

/* =========================================================
   REVIEWS — PHOTO OUTPUT HARD FIX
========================================================= */

.review-author .review-photo,
.review-card img.review-photo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* =========================================================
   REVIEWS — FEATURED IMAGE AUTHOR PHOTO FINAL
========================================================= */

.review-author {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.review-photo,
.review-modal-photo {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #F4F6F9 !important;
}

.review-modal-photo {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  flex-basis: 64px !important;
}

/* =========================================================
   LEGACY DEVICE / OLD SAFARI / OLD CHROME FIXES
   MacOS 11, old Safari/Chrome, old iPad
========================================================= */

/* 1. Базова стабільна висота для всіх hero */
.home-hero,
.hero-section,
.neo-hero,
.about-hero,
.realizace-hero,
.service-hero,
.kariera-hero,
.kontakt-hero {
  min-height: 720px;
  height: 100vh;
  overflow: hidden;
}

/* 2. Нові браузери отримують правильну viewport-висоту */
@supports (height: 100dvh) {
  .home-hero,
  .hero-section,
  .neo-hero,
  .about-hero,
  .realizace-hero,
  .service-hero,
  .kariera-hero,
  .kontakt-hero {
    height: 100dvh;
    min-height: 720px;
  }
}

/* 3. Старі Safari / старі Chrome без dvh */
@supports not (height: 100dvh) {
  .home-hero,
  .hero-section,
  .neo-hero,
  .about-hero,
  .realizace-hero,
  .service-hero,
  .kariera-hero,
  .kontakt-hero {
    height: 100vh;
    min-height: 720px;
  }
}

/* 4. Layout всередині hero завжди має ту саму висоту */
.home-hero-layout,
.hero-layout,
.neo-hero-layout,
.about-hero-layout,
.realizace-hero-layout,
.service-hero-layout,
.kariera-hero-layout,
.kontakt-hero-layout {
  min-height: inherit;
  height: 100%;
}

/* 5. Hero background не має ламатись */
.home-hero-bg,
.hero-bg,
.neo-hero-bg,
.about-hero-bg,
.realizace-hero-bg,
.service-hero-bg,
.kariera-hero-bg,
.kontakt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. Desktop hero content — не через top, а стабільно від низу */
.home-hero-row,
.hero-row,
.neo-hero-row,
.about-hero-row,
.realizace-hero-row,
.service-hero-row,
.kariera-hero-row,
.kontakt-hero-row {
  bottom: clamp(48px, 8vh, 72px);
}

/* 7. Якщо на старому Mac висота маленька через системні банери */
@media (min-width: 992px) and (max-height: 760px) {
  .home-hero,
  .hero-section,
  .neo-hero,
  .about-hero,
  .realizace-hero,
  .service-hero,
  .kariera-hero,
  .kontakt-hero {
    min-height: 760px;
  }

  .home-hero-row,
  .hero-row,
  .neo-hero-row,
  .about-hero-row,
  .realizace-hero-row,
  .service-hero-row,
  .kariera-hero-row,
  .kontakt-hero-row {
    bottom: 48px;
  }
}

/* 8. Mobile / старий iPhone Safari */
@media (max-width: 575px) {
  .home-hero,
  .hero-section,
  .neo-hero,
  .about-hero,
  .realizace-hero,
  .service-hero,
  .kariera-hero,
  .kontakt-hero {
    min-height: 586px;
    height: 100vh;
    height: 100svh;
  }

  @supports (height: 100dvh) {
    .home-hero,
    .hero-section,
    .neo-hero,
    .about-hero,
    .realizace-hero,
    .service-hero,
    .kariera-hero,
    .kontakt-hero {
      height: 100dvh;
    }
  }
}

/* 9. Safari font/render fix */
html,
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* 10. Safari button/input reset */
button,
input,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* =========================================================
   NEO BUILDER — TABLET FINAL
   Breakpoint: 576px–991px
   Added as the final override so desktop and mobile remain intact.
========================================================= */

@media (min-width: 576px) and (max-width: 991px) {

  /* ---------- GLOBAL ---------- */

  .trust-section,
  .services-section,
  .projects-section,
  .why-section,
  .reviews-section,
  .digital-section,
  .contact-section {
    padding: 72px 0 !important;
  }

  .trust-container,
  .services-container,
  .projects-container,
  .why-container,
  .reviews-container,
  .digital-container,
  .contact-container {
    width: calc(100% - 48px) !important;
    max-width: 944px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .trust-title,
  .services-title,
  .projects-title,
  .why-title,
  .reviews-title,
  .contact-title {
    font-size: 44px !important;
    line-height: 48px !important;
    letter-spacing: -1.45px !important;
  }

  .trust-desc,
  .services-desc,
  .projects-desc,
  .why-desc,
  .contact-desc {
    width: 100% !important;
    max-width: 610px !important;
    font-size: 16px !important;
    line-height: 26px !important;
  }

  /* ---------- HERO ---------- */

  .hero-section,
  .hero-layout {
    position: relative !important;
    width: 100% !important;
    min-height: 1024px !important;
    height: 1024px !important;
  }

  .hero-section {
    background-position: center center !important;
  }

  .hero-section::before {
    background:
      linear-gradient(
        90deg,
        rgba(3, 8, 18, .67) 0%,
        rgba(3, 8, 18, .46) 48%,
        rgba(3, 8, 18, .20) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 8, 18, .28) 0%,
        rgba(3, 8, 18, .10) 45%,
        rgba(3, 8, 18, .70) 100%
      ) !important;
  }

  .hero-layout {
    max-width: none !important;
    margin: 0 !important;
  }

  .hero-container {
    position: absolute !important;
    top: calc(50% + 105px) !important;
    right: 24px !important;
    bottom: auto !important;
    left: 24px !important;

    width: auto !important;
    max-width: 944px !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: block !important;
    transform: translateY(-50%) !important;
  }

  .hero-top {
    width: 100% !important;
  }

  .hero-label {
    margin-bottom: 16px !important;
  }

  .hero-title {
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 0 28px !important;

    font-size: clamp(58px, 8vw, 76px) !important;
    line-height: .96 !important;
    letter-spacing: -3px !important;
  }

  .hero-bottom {
    display: block !important;
    width: 100% !important;
  }

  .hero-desc {
    display: block !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 0 20px !important;

    font-size: 14px !important;
    line-height: 23px !important;
  }

  .hero-desc-mobile {
    display: none !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  .hero-buttons .btn {
    height: 42px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
  }

  .btn-primary {
    width: 154px !important;
  }

  .btn-secondary {
    width: 164px !important;
  }

  /* ---------- TRUST ---------- */

  .trust-container {
    display: block !important;
  }

  .trust-left {
    width: 100% !important;
    max-width: 650px !important;
    margin-bottom: 34px !important;
  }

  .trust-title br {
    display: none !important;
  }

  .trust-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: 14px !important;
  }

  .trust-card {
    width: 100% !important;
    height: 164px !important;
    padding: 22px 18px 18px !important;
  }

  .trust-icon {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
    margin-bottom: 10px !important;
  }

  .trust-number {
    margin-bottom: 5px !important;
    font-size: 29px !important;
    line-height: 30px !important;
  }

  .trust-text {
    font-size: 13px !important;
    line-height: 18px !important;
  }

  /* ---------- SERVICES ---------- */

  .services-container {
    display: block !important;
  }

  .services-intro {
    width: 100% !important;
    margin-bottom: 34px !important;
  }

  .services-title {
    margin-bottom: 14px !important;
  }

  .services-title br,
  .services-desc br {
    display: none !important;
  }

  .services-link-desktop {
    display: inline-flex !important;
  }

  .services-link-mobile {
    display: none !important;
  }

  .services-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .service-card {
    width: 100% !important;
    height: 438px !important;
  }

  .service-card-image-wrap {
    width: 100% !important;
    height: 218px !important;
  }

  .service-card-body {
    padding: 22px 22px 24px !important;
  }

  .service-card-head {
    margin-bottom: 14px !important;
  }

  .service-card-title {
    font-size: 21px !important;
    line-height: 26px !important;
  }

  .service-card-arrow {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  .service-card-text {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  /* ---------- PROJECTS ---------- */

  .projects-container {
    display: block !important;
  }

  .projects-intro {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
  }

  .projects-title {
    margin-bottom: 14px !important;
  }

  .projects-desc {
    margin-bottom: 20px !important;
  }

  .projects-link-desktop {
    display: inline-flex !important;
  }

  .projects-link-mobile {
    display: none !important;
  }

  .projects-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    grid-auto-flow: row !important;
    gap: 16px !important;
  }

  .projects-section .projects-grid .project-card {
    position: relative !important;
    grid-column: auto !important;
    grid-row: auto !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    height: auto !important;
    min-height: 500px !important;

    margin: 0 !important;
    overflow: hidden !important;

    background: #ffffff !important;
    border: 1px solid var(--Line) !important;
    border-radius: 18px !important;
  }

  .projects-section .projects-grid .project-image-wrap {
    width: 100% !important;
    height: 276px !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-bottom: 1px solid var(--Line) !important;
  }

  .projects-section .projects-grid .project-image {
    width: 100% !important;
    height: 276px !important;
    object-fit: cover !important;
  }

  .projects-section .projects-grid .project-body {
    width: 100% !important;
    min-height: 224px !important;
    padding: 24px 24px 26px !important;

    display: flex !important;
    flex-direction: column !important;
  }

  .projects-section .projects-grid .project-head {
    width: 100% !important;
    min-height: 62px !important;
    margin: 0 0 22px !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }

  .projects-section .projects-grid .project-title {
    width: calc(100% - 56px) !important;
    max-width: calc(100% - 56px) !important;
    margin: 0 !important;

    font-size: 21px !important;
    line-height: 26px !important;
    letter-spacing: -.48px !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .projects-section .projects-grid .project-arrow {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
  }

  .projects-section .projects-grid .project-meta {
    width: 100% !important;
    margin: auto 0 0 !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, auto) !important;
    column-gap: 34px !important;
    row-gap: 16px !important;
  }

  .projects-section .projects-grid .project-meta > div {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .projects-section .projects-grid .project-meta > div:nth-child(4) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .projects-section .projects-grid .project-meta span {
    display: block !important;
    margin: 0 0 6px !important;

    font-size: 12px !important;
    line-height: 17px !important;
    font-weight: 400 !important;

    white-space: nowrap !important;
  }

  .projects-section .projects-grid .project-meta strong {
    display: block !important;
    max-width: 100% !important;

    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;

    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  /* ---------- WHY US ---------- */

  .why-container {
    display: block !important;
  }

  .why-intro {
    width: 100% !important;
    max-width: 650px !important;
    margin-bottom: 30px !important;
  }

  .why-title br {
    display: none !important;
  }

  .why-grid {
    width: 100% !important;
    margin-top: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .why-card {
    width: 100% !important;
    height: 168px !important;
    padding: 22px 22px 20px !important;
  }

  .why-number {
    margin-bottom: 14px !important;
  }

  .why-card-title {
    margin-bottom: 9px !important;
    font-size: 19px !important;
    line-height: 22px !important;
  }

  .why-card-desc {
    font-size: 14px !important;
    line-height: 21px !important;
  }

  /* ---------- REVIEWS ---------- */

  .reviews-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }

  .reviews-grid {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .review-card {
    width: 100% !important;
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    padding: 28px 24px !important;
  }

  .review-text {
    width: 100% !important;
    height: 142px !important;
    min-height: 142px !important;
    max-height: 142px !important;
    flex-basis: 142px !important;

    font-size: 16px !important;
    line-height: 25px !important;
  }

  .review-line {
    margin: 22px 0 !important;
  }

  /* ---------- DIGITAL ---------- */

  .digital-container {
    display: block !important;
  }

  .digital-left,
  .digital-content,
  .digital-right {
    width: 100% !important;
    height: auto !important;
  }

  .digital-left {
    margin-bottom: 34px !important;
    gap: 24px !important;
  }

  .digital-content {
    gap: 24px !important;
  }

  .digital-text {
    max-width: 680px !important;
    font-size: 16px !important;
    line-height: 25px !important;
  }

  .digital-logos {
    width: 100% !important;
    min-height: 64px !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
  }

  .digital-logos img {
    max-height: 58px !important;
  }

  .digital-right {
    overflow: hidden !important;
    border-radius: 16px !important;
  }

  .digital-right img {
    width: 100% !important;
    height: clamp(330px, 52vw, 480px) !important;
    object-fit: cover !important;
  }

  /* ---------- CONTACT ---------- */

  .contact-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr) !important;
    column-gap: 48px !important;
    align-items: start !important;
  }

  .contact-left,
  .contact-list,
  .contact-item {
    width: 100% !important;
  }

  .contact-left {
    width: 100% !important;
    margin: 0 !important;
    padding-top: 0 !important;
  }

  .contact-list {
    width: 100% !important;
    padding-top: 48px !important;
  }

  .contact-title {
    margin-bottom: 14px !important;
  }

  .contact-desc {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 !important;
  }

  .contact-item {
    gap: 14px !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
  }
}

/* =========================================================
   LARGE SCREENS / TV / 2K / 4K
========================================================= */

/* Великі 2K екрани */
@media screen and (min-width: 2200px) and (max-width: 3199px) {
  body {
    zoom: 1.25;
  }
}

/* 4K телевізори та монітори */
@media screen and (min-width: 3200px) and (max-width: 5999px) {
  body {
    zoom: 2;
  }

  .hero-section,
  .hero-layout {
    height: 100vh;
    min-height: 900px;
  }

  .hero-section {
    background-size: cover;
    background-position: center center;
  }

  .hero-layout {
    width: 100%;
  }

  .hero-container {
    top: auto;
    bottom: 70px;
    height: 511px;
  }
}

/* 6K / 8K */
@media screen and (min-width: 6000px) {
  body {
    zoom: 3;
  }

  .hero-container {
    top: auto;
    bottom: 47px;
  }
}
/* =========================================================
   PROPORTIONAL SCALE FOR LARGE SCREENS
   Базовий дизайн: 1920px
========================================================= */

@media screen and (min-width: 2400px) {
  html {
    zoom: calc(100vw / 1920);
  }

  body {
    width: 1920px;
    margin: 0 auto;
  }
}