.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), padding var(--t), backdrop-filter var(--t);
  padding: 22px 0;
}

.site-header.scrolled {
  background: rgba(245, 244, 239, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(75, 99, 88, 0.10);
  padding: 14px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
  z-index: 10;
}

.logo {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-white);
  transition: color var(--t-fast);
  display: block;
}

.logo a {
  color: inherit;
}

.site-header.scrolled .logo {
  color: var(--c-text);
}

.header__nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list a {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-fast);
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width var(--t);
}

.nav__list a:hover {
  color: var(--c-white);
}

.nav__list a:hover::after {
  width: 100%;
}

.site-header.scrolled .nav__list a {
  color: var(--c-text);
}

.site-header.scrolled .nav__list a:hover {
  color: var(--c-primary);
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  padding: 11px 26px;
  font-size: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 200;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-white);
  transition: all 0.36s var(--ease);
  transform-origin: center;
}

.site-header.scrolled .burger span {
  background: var(--c-text);
}

.burger.active span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
  background: var(--c-white);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
  background: var(--c-white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-primary);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
  overflow: hidden;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--f-display);
  font-size: clamp(28px, 7vw, 52px);
  color: var(--c-white);
  letter-spacing: -0.015em;
  transition: color var(--t-fast), opacity var(--t-fast);
  opacity: 0.82;
  display: block;
}

.mobile-menu__link:hover {
  color: var(--c-accent);
  opacity: 1;
}

.mobile-menu__footer {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.mobile-menu__contact {
  font-family: var(--f-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(43, 48, 47, 0.68) 0%,
    rgba(75, 99, 88, 0.40) 50%,
    rgba(75, 99, 88, 0.12) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(198, 168, 106, 0.45);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 36px;
  background: rgba(198, 168, 106, 0.08);
  backdrop-filter: blur(4px);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--c-accent);
}

.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 44px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.hero__scroll-text {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.value-prop {
  padding: 140px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.value-prop__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto auto;
}

.value-prop__intro {
  grid-column: 1;
  grid-row: 1;
  padding-right: 72px;
  padding-bottom: 56px;
  border-right: 1px solid var(--c-border);
}

.value-prop__intro h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.06;
  margin-top: 4px;
}

.value-prop__text {
  grid-column: 2;
  grid-row: 1 / 3;
  padding-left: 72px;
  padding-bottom: 56px;
}

.value-prop__text .lead {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 24px;
}

.value-prop__text p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--c-muted);
  margin-bottom: 18px;
}

.value-prop__text p:last-child {
  margin-bottom: 0;
}

.value-prop__cert {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(75, 99, 88, 0.06);
  border: 1px solid rgba(75, 99, 88, 0.16);
  border-radius: var(--r-md);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  margin-top: 28px;
}

.cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}

.value-prop__stats {
  grid-column: 1;
  grid-row: 2;
  padding-right: 72px;
  padding-top: 56px;
  border-right: 1px solid var(--c-border);
  border-top: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 20px;
}

.stat {}

.stat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--c-primary);
  line-height: 1;
  display: block;
}

.stat__suffix {
  font-size: 0.55em;
  letter-spacing: 0;
  opacity: 0.8;
}

.stat__label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 6px;
  display: block;
}

.signature {
  position: relative;
  height: 680px;
  overflow: hidden;
  max-width: 100%;
}

.signature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.signature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(43, 48, 47, 0.78) 0%,
    rgba(75, 99, 88, 0.38) 55%,
    rgba(75, 99, 88, 0.08) 100%
  );
}

.signature__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.signature__inner {
  padding-left: 120px;
  max-width: 680px;
}

@media (max-width: 768px) {
  .signature__inner { padding: 0 20px; }
}

.signature__quote {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.22;
  color: var(--c-white);
  margin-bottom: 26px;
}

.signature__desc {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  max-width: 480px;
}

.signature__callout {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.signature__callout::after {
  content: '';
  display: block;
  width: 52px;
  height: 1px;
  background: var(--c-accent);
}

.portfolio-home {
  padding: 140px 0;
  background: var(--c-bg2);
  overflow-x: hidden;
  overflow-x: clip;
}

.portfolio-home__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.portfolio-home__header h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.portfolio-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-secondary);
}

.portfolio-card:first-child {
  grid-column: 1 / 3;
}

.portfolio-card:first-child .portfolio-card__img-wrap {
  aspect-ratio: 16 / 9;
}

.portfolio-card:not(:first-child) .portfolio-card__img-wrap {
  aspect-ratio: 4 / 3;
}

.portfolio-card__img-wrap {
  overflow: hidden;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 48, 47, 0.78) 0%, transparent 55%);
  transition: opacity var(--t);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 0.92;
}

.portfolio-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 30px;
  transform: translateY(6px);
  transition: transform var(--t);
}

.portfolio-card:hover .portfolio-card__info {
  transform: translateY(0);
}

.portfolio-card__region {
  font-family: var(--f-location);
  font-style: italic;
  font-size: 13px;
  color: var(--c-accent);
  margin-bottom: 6px;
  display: block;
}

.portfolio-card__title {
  font-family: var(--f-display);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 0;
}

.portfolio-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198, 168, 106, 0.12);
  border: 1px solid rgba(198, 168, 106, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8) rotate(-45deg);
  transition: all var(--t);
}

.portfolio-card:hover .portfolio-card__arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.portfolio-card__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--c-accent);
}

.js-marquee-wrap {
  padding: 56px 0;
  background: var(--c-bg2);
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100vw;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  width: max-content;
  margin-bottom: 10px;
  user-select: none;
}

.js-mq-row:last-child {
  margin-bottom: 0;
}

.js-mq-row.fwd {
  animation: mqFwd 32s linear infinite;
}

.js-mq-row.rev {
  animation: mqRev 32s linear infinite;
}

@keyframes mqFwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes mqRev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.mq-item {
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.12;
  padding: 0 36px;
  white-space: nowrap;
}

.mq-sep {
  font-family: var(--f-mono);
  font-size: clamp(12px, 1.5vw, 18px);
  color: var(--c-accent);
  opacity: 0.22;
  padding: 0 8px;
  line-height: inherit;
}

.insight {
  padding: 140px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.insight__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.insight__sticky {
  position: sticky;
  top: 120px;
}

.insight__sticky h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 20px;
  margin-top: 4px;
}

.insight__sticky p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 28px;
}

.insight__content {}

.insight__article {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--c-border);
}

.insight__article:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.insight__article h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 4px;
}

.insight__article p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-muted);
  margin-bottom: 14px;
}

.insight__article p:last-child {
  margin-bottom: 0;
}

.drop-cap::first-letter {
  float: left;
  font-family: var(--f-display);
  font-size: 78px;
  line-height: 0.78;
  margin-right: 10px;
  margin-top: 10px;
  color: var(--c-primary);
  opacity: 0.6;
}

.services-section {
  padding: 140px 0;
  background: var(--c-primary);
  overflow-x: hidden;
  overflow-x: clip;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
  align-items: end;
}

.services-header h2 {
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--c-white);
  margin-top: 4px;
}

.services-header .section-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--f-body);
  font-weight: 300;
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  align-items: start;
  transition: background var(--t-fast);
}

.service-item:hover .service-item__title {
  color: var(--c-accent);
}

.service-item__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  padding-top: 7px;
  flex-shrink: 0;
}

.service-item__body {
  padding-right: 40px;
}

.service-item__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 10px;
  transition: color var(--t-fast);
  letter-spacing: -0.02em;
}

.service-item__desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.52);
  max-width: 560px;
}

.service-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-tag {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.44);
}

.service-item__meta {
  text-align: right;
  flex-shrink: 0;
  padding-top: 4px;
}

.service-item__duration {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin-bottom: 4px;
  white-space: nowrap;
}

.service-item__price {
  font-family: var(--f-display);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.timeline-section {
  padding: 140px 0;
  background: var(--c-bg2);
  overflow-x: hidden;
  overflow-x: clip;
}

.timeline-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 80px;
}

.timeline-header h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin-bottom: 18px;
  margin-top: 4px;
}

.timeline-header p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--c-border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 56px;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__left {
  padding-right: 44px;
  text-align: right;
}

.timeline-item__right {
  padding-left: 44px;
}

.timeline-item:nth-child(even) .timeline-item__content-left {
  display: block;
}

.timeline-item:nth-child(even) .timeline-item__content-right {
  display: none;
}

.timeline-item:nth-child(odd) .timeline-item__content-left {
  display: none;
}

.timeline-item:nth-child(odd) .timeline-item__content-right {
  display: block;
}

.timeline-item__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg2);
  border: 2px solid var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: all var(--t);
}

.timeline-item:hover .timeline-dot {
  background: var(--c-primary);
  color: var(--c-white);
}

.timeline-item h3 {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 24px);
  margin-bottom: 10px;
  margin-top: 0;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
}

.timeline-empty {
  display: block;
}

.social-proof {
  padding: 140px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.social-proof__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.social-proof__header h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--s-sm);
  border: 1px solid var(--c-border);
  transition: transform var(--t), box-shadow var(--t);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-star {
  color: var(--c-accent);
  font-size: 14px;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.78;
  color: var(--c-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--c-primary);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 2px;
  display: block;
}

.testimonial-city {
  font-size: 12px;
  color: var(--c-muted);
  display: block;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.partner-logo {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--t-fast), opacity var(--t-fast);
  opacity: 0.45;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--c-primary);
}

.cta-block {
  padding: 140px 0;
  background: var(--g-hero);
  overflow-x: hidden;
  overflow-x: clip;
  text-align: center;
}

.cta-block__inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-block__announce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 28px;
}

.cta-block__announce::before,
.cta-block__announce::after {
  content: '';
  display: block;
  height: 1px;
  width: 36px;
  background: var(--c-accent);
}

.cta-block h2 {
  font-size: clamp(32px, 5vw, 72px);
  color: var(--c-white);
  margin-bottom: 18px;
  line-height: 1.05;
  margin-top: 0;
}

.cta-block__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 28px;
  font-family: var(--f-body);
}

.cta-block__cta-text {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 24px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 44px;
}

.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-section {
  padding: 120px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 20px;
  margin-top: 4px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(75, 99, 88, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
}

.contact-detail__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 3px;
  display: block;
}

.contact-detail__value {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-text);
  font-weight: 500;
  display: block;
}

.contact-form {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--s-md);
  border: 1px solid var(--c-border);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 9px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border-solid);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(75, 99, 88, 0.10);
  background: var(--c-white);
}

.form-control::placeholder {
  color: var(--c-muted);
  opacity: 0.8;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-group .btn {
  width: 100%;
}

.site-footer {
  background: var(--c-text);
  padding: 80px 0 40px;
  overflow-x: hidden;
  overflow-x: clip;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 14px;
  display: block;
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  max-width: 240px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: all var(--t-fast);
}

.footer__social-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.footer__col-title {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer__links a:hover {
  color: var(--c-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.footer__legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-family: var(--f-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--t-fast);
}

.footer__legal a:hover {
  color: var(--c-accent);
}

.page-hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 48, 47, 0.80) 0%,
    rgba(75, 99, 88, 0.22) 55%,
    transparent 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 68px;
  padding-top: 140px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
}

.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 80px);
  color: var(--c-white);
  line-height: 1.04;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.page-hero__sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 14px;
  max-width: 520px;
}

.about-intro {
  padding: 120px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__text h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  margin-bottom: 20px;
  margin-top: 4px;
}

.about-intro__text p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--c-muted);
  margin-bottom: 16px;
}

.about-intro__text p:last-child { margin-bottom: 0; }

.about-intro__img {
  position: relative;
}

.about-intro__img img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--s-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-intro__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--s-md);
  font-family: var(--f-display);
  font-size: 14px;
}

.about-intro__badge strong {
  font-size: 26px;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.about-values {
  padding: 120px 0;
  background: var(--c-bg2);
  overflow-x: hidden;
  overflow-x: clip;
}

.about-values__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-values__header h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 4px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  padding: 40px 36px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--s-xs);
  transition: transform var(--t), box-shadow var(--t);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-md);
}

.value-item__num {
  font-family: var(--f-display);
  font-size: 54px;
  color: var(--c-secondary);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
}

.value-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
}

.about-team {
  padding: 120px 0;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.about-team__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-team__header h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 4px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-sm);
  border: 1px solid var(--c-border);
  transition: transform var(--t), box-shadow var(--t);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-md);
}

.team-card__avatar {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 64px;
  color: rgba(255, 255, 255, 0.25);
}

.team-card__body {
  padding: 26px 28px;
}

.team-card__name {
  font-family: var(--f-display);
  font-size: 22px;
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: block;
}

.team-card__bio {
  font-size: 13px;
  line-height: 1.72;
  color: var(--c-muted);
}

.faq-section {
  padding: 120px 0;
  background: var(--c-bg2);
  overflow-x: hidden;
  overflow-x: clip;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section__header h2 {
  font-size: clamp(26px, 3.5vw, 46px);
  margin-top: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 120px;
}

.faq-sticky h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 16px;
  margin-top: 4px;
}

.faq-sticky p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--c-muted);
}

.accordion {}

.accordion-item {
  border-bottom: 1px solid var(--c-border);
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  background: none;
  border: none;
}

.accordion-trigger__title {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.accordion-trigger:hover .accordion-trigger__title {
  color: var(--c-primary);
}

.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease), padding 0.3s var(--ease);
}

.accordion-body.open {
  max-height: 500px;
  padding-bottom: 22px;
}

.accordion-body p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--c-muted);
}

.services-page {
  padding: 100px 0 120px;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.services-page__intro {
  max-width: 640px;
  margin-bottom: 72px;
}

.services-page__intro h2 {
  font-size: clamp(26px, 3.5vw, 48px);
  margin-top: 4px;
  margin-bottom: 18px;
}

.services-page__intro p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-muted);
}

.service-card-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--c-white);
  box-shadow: var(--s-sm);
  transition: box-shadow var(--t), transform var(--t);
}

.service-card-lg:hover {
  box-shadow: var(--s-md);
  transform: translateY(-4px);
}

.service-card-lg.reverse {
  direction: rtl;
}

.service-card-lg.reverse > * {
  direction: ltr;
}

.service-card-lg__visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-lg__num {
  font-family: var(--f-display);
  font-size: 120px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  position: absolute;
}

.service-card-lg__body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-lg__body h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 14px;
  margin-top: 4px;
}

.service-card-lg__body p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text);
  font-family: var(--f-ui);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.portfolio-page {
  padding: 100px 0 120px;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.portfolio-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-secondary);
  transition: transform var(--t), box-shadow var(--t);
}

.portfolio-item:first-child {
  grid-column: span 2;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
}

.portfolio-item__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-item:first-child .portfolio-item__img-wrap {
  aspect-ratio: 21/9;
}

.portfolio-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s var(--ease);
}

.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.05);
}

.portfolio-item__info {
  padding: 22px 24px 26px;
  background: var(--c-white);
}

.portfolio-item__region {
  font-family: var(--f-location);
  font-style: italic;
  font-size: 13px;
  color: var(--c-accent2);
  margin-bottom: 4px;
  display: block;
}

.portfolio-item__name {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 8px;
}

.portfolio-item__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-muted);
}

.contact-page {
  padding: 100px 0 120px;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.contact-page__info h2 {
  font-size: clamp(26px, 3.5vw, 48px);
  margin-bottom: 18px;
  margin-top: 4px;
}

.contact-page__info p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 36px;
}

.contact-page__form-title {
  font-family: var(--f-display);
  font-size: 26px;
  margin-bottom: 28px;
  margin-top: 0;
}

.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-md);
  border: 1px solid var(--c-border);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: none;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-hero);
  overflow: hidden;
  overflow-x: hidden;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.thanks-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(43,48,47,0.35) 100%);
  pointer-events: none;
}

.thanks-inner {
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.thanks-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(198, 168, 106, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  color: var(--c-accent);
  background: rgba(198, 168, 106, 0.08);
}

.thanks-inner h1 {
  font-size: clamp(36px, 5.5vw, 70px);
  color: var(--c-white);
  margin-bottom: 18px;
  line-height: 1.04;
}

.thanks-inner h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.thanks-inner p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 44px;
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--c-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 10px;
}

.legal-updated {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  margin-bottom: 52px;
  display: block;
}

.legal-content h2 {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--c-text);
}

.legal-content h3 {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--c-text);
  letter-spacing: 0;
}

.legal-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-muted);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 22px;
  margin-bottom: 18px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 14px;
  line-height: 1.78;
  color: var(--c-muted);
  margin-bottom: 7px;
}

.legal-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--c-accent);
}

.legal-content strong {
  color: var(--c-text);
  font-weight: 600;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .burger { display: flex; }
  .header__nav { display: none; }
  .header__cta { display: none; }

  .value-prop__grid {
    grid-template-columns: 1fr;
  }
  .value-prop__intro {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: 48px;
    grid-row: 1;
    grid-column: 1;
  }
  .value-prop__text {
    padding-left: 0;
    padding-top: 48px;
    grid-column: 1;
    grid-row: 2;
  }
  .value-prop__stats {
    border-right: none;
    padding-right: 0;
    padding-top: 48px;
    grid-row: 3;
    grid-column: 1;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-home__grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-card:first-child {
    grid-column: 1 / -1;
  }

  .insight__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .insight__sticky {
    position: static;
  }

  .timeline::before { display: none; }
  .timeline-item {
    grid-template-columns: 52px 1fr;
  }
  .timeline-item__left,
  .timeline-item__right {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }
  .timeline-item:nth-child(odd) .timeline-item__content-right,
  .timeline-item:nth-child(even) .timeline-item__content-left {
    display: block;
  }
  .timeline-item:nth-child(odd) .timeline-item__content-left,
  .timeline-item:nth-child(even) .timeline-item__content-right {
    display: none;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-values__grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-lg,
  .service-card-lg.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-card-lg > * { direction: ltr; }
  .service-card-lg__visual { min-height: 240px; }

  .portfolio-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item:first-child {
    grid-column: span 2;
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-home__grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card:first-child {
    grid-column: 1;
  }

  .signature {
    height: 480px;
  }

  .about-values__grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-full {
    grid-template-columns: 1fr;
  }
  .portfolio-item:first-child {
    grid-column: span 1;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-item {
    grid-template-columns: 40px 1fr;
  }
  .service-item__meta {
    display: none;
  }

  .logos-row {
    gap: 28px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card-lg__body {
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .value-prop__stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__badge {
    font-size: 9px;
    padding: 7px 14px;
  }
}

@media (min-width: 1025px) {
  .hero__img.js-parallax {
    will-change: transform;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
